var fDesc=new Array();
fDesc[0] = "This tool displays a beautifull Swiss Railway Clock showing the current time. The screensaver animates the clock on a black backround.
The Swiss Railway Clock user settings can be configured by going to the Windows Screen Saver Settings.When running the Swiss Railway Clock desktop application, you can double-click on the clock to change the user settings.";
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 = '';
}
}