var fDesc=new Array();
fDesc[0] = "Winagenda is a small utility which will help you plan meetings and events.
It features three basic tools: The first one is a calendar , the second one is the reminders tool for birthdays or other important dates, with specific alarms that sound in a given date and time to remind of an event, and cyclic alarms that can be configured to sound on a weekly or monthly basis for events that repeat every given time, like for instance the payment day for your credit card or a weekly meeting with your staff. The third one is the "new post it" or "sticky notes" tool, useful to remember small information pieces (like a phone number or an email address).
This application has a nice looking and easy to use interface, which sits on your taskbar, if you want to open it, you just need to right click on its icon and select a tool from the main menu.
This might be a useful application, but not good enough for its price, but If you want to try it and see if its what you are looking for, there is a 15 day trial available at the developer's site.";
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 = '';
}
}