var fDesc=new Array();
fDesc[0] = "SNTP Service is a time synchronization client/server program for the more advanced user. It maintains network time synchronization services under 32-bit and 64-bit versions of Windows 7, Vista, Server 2008, Server 2003 and XP.
While an effective tool for the desktop, it also includes important features for enterprise network deployment. From a single workstation, an administrator can remotely configure, monitor, troubleshoot, and track licensing of enterprise-wide SNTPServ client and server components.";
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 = '';
}
}