var fDesc=new Array();
fDesc[0] = "Alarm Master is an alarm clock and a PIM application.
Main Features:
Original design, simple and easy-to-use interface.
ONE click to set up the alarm!
Set up the alarm for the current day or any forthcoming date. Set up template alarms: daily, weekly, monthly, yearly notifications or certain date notification.
All kinds of alarm "actions": text messages, sounds, music or video. Wide opportunities of navigation through alarms.
Schedule execution of service programs.
Handy timer for setting a sound signal for time intervals.
Local language fonts and local calendar settings are supported.
Multi user is supported.
Every user has private Alarm Master data and settings.";
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 = '';
}
}