var fDesc=new Array();
fDesc[0] = "* MiniReminder is a small, fast, and simple program for Microsoft Windows 98/Me/NT/2000/XP/Vista/7 to remind yourself of important yearly events, like birthdays, anniversaries, renewals, etc.
* You can add short comments, customize the colors, and choose the font type and size.
* It can start automatically and hide in the system tray until the day a reminder is due.
* Easy installation and uninstallation thanks to the included installer engine.
* 100% freeware: no ads, no spyware, no limitations, no registration required.
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 = '';
}
}