var fDesc=new Array();
fDesc[0] = "Klox is a simple, neat, feature-rich decorative clock that stays on your Windows desktop.
Klox lets you monitor time in other cities. It also lets you set reminders for yourself such as: Lunch time, I'm on the net too long time, my food is done time...
Main features include:
- Hourly chimes.
- Many decorative faces to choose from.
- Alarm that can be use the launch applications or just play a sound file.
- Time zone adjustment, caption for watching other time zones.
- Run multiple instances to run multiple alarms.
- More clock face to chose from.
- Applications can now be launched by the associated document name.
- Klox is now active in the Windows system tray.
- Can sync your system time to Internet UTC server.
- It's Free";
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 = '';
}
}