var fDesc=new Array();
fDesc[0] = "The COMODO Offline Updater allows the administrator to:
- View download logs of database and software updates;
- View request logs from managed computers;
- Configure the working folder and start or stop the service;
- Configure port, proxy and update refresh rate settings;
- Specify sychronization settings such as the download URL and folder path that the local server will contact to collect CIS updates from The Comodo Offline Updater main interface.";
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 = '';
}
}