var fDesc=new Array();
fDesc[0] = "ServerUptime is an application that shows the last time Citrix or Windows server was rebooted, and it generates a report. The Load Server File List button is supposed to load a list of Citrix or Windows servers from file SERVERLIST.TXT. You can also load the List of online Citrix servers, or other servers filtered with the help of Filter button.";
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 = '';
}
}