var fDesc=new Array(); fDesc[0] = "Easy Alarm Clock is a clock that displays both the time and date with an alarm. This program sits out of the way in the system tray.
Program Features:
· Set to display always on top
· Set screen position
· Displays a user-defined message when the alarm sounds
· Sleep function ¿ puts the alarm to sleep for five minutes
· The system tray icon flashes when alarm actives
· The alarm re-sounds if ignored for a minute
· Status bar displaying key program information
· Easy selection of sounds
· Ability to use your own wave files for all sound events
· The alarm can be silent, displaying text message only
· Easy to enable and disable the alarm
· Program menu available from program icon
· The alarm message can have time, date and other information added with special control codes
· Display time in 12-or 24-hour format
· Display date in short or long format
· Save or recall the alarm and program settings at any time
· Hour and Half-hour sound events"; 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 = ''; } }