var fDesc=new Array();
fDesc[0] = "Relay Timer R2X is programmable timer software to control relays according to schedule setting. It works with 2-channel relay boards of National Control Devices, Robot Electronics and Velleman.
It can control 2-channel relay boards with Serial Port/USB or Network interface, detect and show connection status of relay board continuously. Remind after disconnection and recover after reconnection automatically. Turn on/off relay manually with a separate control panel for each relay. Turn on/off automatically according to schedule setting.";
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 = '';
}
}