var fDesc=new Array();
fDesc[0] = "NotifyMe is a free app that allows you to create advanced reminders and messages with full screen, balloon pop-ups or audio.
Main features:
- Adjust and format your text options easily like any word-processing program for text alerts.
- Preview what a Notification will look like before activating it with the 'Preview' button.
- Save & load different 'themes' (*.nfm files) that you design yourself for when the mood suits you.";
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 = '';
}
}