var fDesc=new Array();
fDesc[0] = "EnergyLogger is a native Windows application designed to log real-time energy usage from the “Tweet-A-Watt”, a wirelessly enhanced version of the ubiquitous Kill-A-Watt power meter.
EnergyLogger adds the ability to measure and predict your electric costs and even your carbon footprint (CO₂ production), based on the latest data from the Environmental Protection Agency and the Department of Energy.";
function tShowHide(id, show)
{
var s = document.getElementById("desc");
if ((s.innerHTML.length<=212 || show==1) && show!=2)
{
s.innerHTML = fDesc[id];
if (document.getElementById('m1'))
document.getElementById('m1').style.display='none';
if (document.getElementById('m2'))
document.getElementById('m2').style.display='none';
if (document.getElementById('more_txt'))
document.getElementById('more_txt').style.display='inline';
}
else
{
s.innerHTML = '';
}
}