var fDesc=new Array();
fDesc[0] = "WinOrganizer is a full-scale personal information manager (PIM) that helps you organize and plan your business and personal life. It's a planner, notepad and address book combined in one powerful application.
The computer version of the organizer comprises all features of its paper prototype in a more comfortable way, which makes working with it quicker and easier. Its user-friendly interface combines all your notes, bookmarks, holidays, reminders, appointments, task lists, contacts, and passwords into a coherent tree outline form that can be customized as required. The data can be protected by password to limit the access to your personal information. Now you won't miss a single holiday or your friend's birthday; you will be able to track everyday tasks and, what's more, the program will notify you of the upcoming events and tasks.
In addition, like in a usual organizer, Notes powered by MS Word-like rich-text tools perfectly suit for keeping various information such as notes, recipes, famous quotations, tables, pictures, Web-links, and even entire pages from the Internet.
The program is equipped with flexible sorting and filtering options, HTML-printing, automatic phone dialing, as well as integration with the installed e-mail client and Web browser. All traditional holidays are included in the program, plus you can add your own vital dates.";
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 = '';
}
}