var fDesc=new Array();
fDesc[0] = "Event/Class Registration Organizer Pro for Windows is a simple database management software that helps you to manage events, courses, classes, workshops, participants, and registrations.
Features:
-simple to use event registration database system
-fast and easy data entry
-manage/process one event or multiple events
-print registration receipts
-search data by any field
-sort data by any field
-many flexible database processing features
-several user-definable data fields
-print event summary reports, address labels, registration receipts, send emails";
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 = '';
}
}