var fDesc=new Array();
fDesc[0] = "Desk Clock is a clock application with reminders, time zones, and ability to synchronize your system clock with an internet time server. Many customizeable options.
Main features:
-Three clock styles, choose from Analog, Digital or Text.
-Numerous options to control look and feel of the clock including the colors for frame, background, face, and clock hands as well as the fonts.
-A quick reference calendar that can show multiple months a glance.
-Play a specified sound on the hour.
-Display the date on the clock face.
-Set a reminder by time or date and time that will display a message, play a sound and open a document or run a program.
-Display an alternate time zone with it's own look and feel.
-Synchronize your computer clock with an internet 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 = '';
}
}