var fDesc=new Array();
fDesc[0] = "CurrentChart is used to stores and charts all historical data.
Features:
- totally free
- Uses Firebird database. Can handle large numbers!
- Extremely (endlessly) customizable charts
- caters for Australian voltage (240V). You can enter your own voltaage.
- Stores and charts all live readings. Stores 30 days of live data (almost a million records)
- estimates your next bill \
- You can compute costs directly from the live charts (ie mark a region)
- you can give meaningful names to appliances and sensors
- handles 10 appliances (transmitters) with 3 sensors each
- can export live data as XML (as it comes in)
- stores estimated and actual billing/usage amounts.
- setup different billing rates for each sensor (ie hotwater, etc)
- can specify each sensor as being Incoming or Outgoing. ie you are using or generating power. Good if you have solar power on one phase.";
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 = '';
}
}