var fDesc=new Array();
fDesc[0] = "Rain8net Configuration program is a software tool which allows you to configure your Rain8Net devices.
Rain8Net device is a networked RS232 irrigation controller and it requires a computer (or other automation device) running to control all scheduled irrigation.
Rain8net Configuration tool has a simple graphical interface which allows you to :
- select the address between 1 and 254
- select default timer values
- serial port
- default timers
- input which may be : a rain sensor or a flow meter.";
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 = '';
}
}