var fDesc=new Array(); fDesc[0] = "This utility displays a big analogue clock on your desktop, and you can adjust its position and if it stays in front of the other windows. Six skins are available in this version: blue, green, black and three extra. It features two programmable alarms and hourly beeps. With the mouse wheel you can change the current clock skin. Now the red hand can have a smooth motion if this option selected in the clock settings page. Auto run option is also present, and all these settings are saved and restored next time the program is launched."; 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 = ''; } }