var fDesc=new Array();
fDesc[0] = "This streamlined, feature-packed clock utility offers lots of useful information at a glance. Though it gives the standard digital display, a handful of skins give this application a bit of flair.
Weather Clock presents you with an enlarged digital display clock along with the date, current temperature, and current weather conditions of a user-specified location. Fortunately, you can select what is displayed in case you don't want to give up tray space.
A calendar is easily accessible with a quick right-click of the program's display in the system tray. Alarms accompanied by pop-up messages and your favorite audio files can be set to launch files, applications, or to shut down operations.
In addition, a snooze feature and synchronization with atomic clock servers are a definite plus.
With so many customizations, anyone can appreciate this software's generous output.";
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 = '';
}
}