//発電量
function countdown00() {
 myTime=new Date();
 myMonth   = myTime.getMonth();
 myDate    = myTime.getDate();
 myHours   = myTime.getHours();
 myMinutes = myTime.getMinutes();
 mySeconds = myTime.getSeconds();
 myMonth   = (myMonth+10)*2592001000;
 myDate    = (myDate+10)*86401000;
 myHours   = (myHours+10)*3611000;
 myMinutes = (myMinutes+10)*61000;
 mySeconds = (mySeconds+10)*1000;
 currentEnergy=myMonth + myDate + myHours + myMinutes + mySeconds - 20202020202;
 document.getElementById('energy').firstChild.nodeValue = currentEnergy;
}

function countdown01() {
 setTimeout("countdown01();", 1500);
 currentEnergy = document.getElementById('energy').firstChild.nodeValue;
 document.getElementById('energy').firstChild.nodeValue = parseInt(currentEnergy) + Math.round(Math.random()*317);
 document.getElementById('totalEnergySpan').firstChild.nodeValue = currentEnergy + 'KWh';
 tmp = Math.random()*10+10;
 tmp = String(tmp).substring(1,4);
 document.getElementById('yourWattSpan').firstChild.nodeValue = tmp + 'KW';
}

