var fDesc=new Array(); fDesc[0] = "CursorClock is a software that will turn your mouse cursor into a working clock. It displays the time from 12:00 Midnight to 12:00 Noon. To save space, no AM or PM is displayed. If you cannot figure out if it is AM or PM then you need to go outside more often or switch to the 24-hour format."; 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 = ''; } }