var fDesc=new Array();
fDesc[0] = "World Time is a software that can help you to set the world clock on your desktop.
It has a configurable display that minimizes to the system tray.
It also has the ability to a World Map with day/night display and ability to plot any/all locations.
This tool uses NTP to synchronize your computers system time (UTC) to a time server.";
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 = '';
}
}