var fDesc=new Array();
fDesc[0] = "Create the look and feel of the classic Cuckoo Clock on your computer desktop!
An ingenious and realistic desktop clock emulator with its animated pendulum, and its live and high quality sounds. Create the look and feel of an old-fashioned Cuckoo Clock on the desktop of your PC. The program combines powerful tools, such as a scheduler, alarm clock and time adjustment via Internet, stylish skins, a range of creative themes, including various sounds, animated clocks and wallpapers.";
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 = '';
}
}