var fDesc=new Array();
fDesc[0] = "Remote Programming Software Lite (RPS-LITE) is an account management and control panel programming utility for Microsoft Windows operating systems. It is designed to remotely or locally program specific control panels.
Features:
- Allows end users to perform control panel management tasks
- Allows users to select a modem appropriate for the control panel type
- Supports multiple workstations on a network
- Supports SQL database
- Works with Microsoft Windows operating systems including Windows 7";
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 = '';
}
}