var fDesc=new Array();
fDesc[1] = ", TOC, mail merge. Full support for professional printing. Many awards (see http://www.serif.com/c ompany/awards.asp). FREE. Registration required.";
fDesc[2] = ", Turbo Pascal and Delphi. Its interface is very similar to Borland Turbo Pascal, but with more options. Free Pascal was created by Paul Florian Klämpfl, a student that decided to create his own compiler when Borland made the announcement that there wouldn't be a Borland Pascal 8 version.";
fDesc[3] = "lessons. After months of studying Ellie decided to start her own business, and since she didn't have an office to work placed the equipment in the yard of her house. You can try this game for 60 minutes before you buy the licensed version.";
fDesc[4] = "exportable ever-new-colored alarms and startup reminders with text and voice recordable messages. It's for those who are pressed for time.";
fDesc[7] = "to everyone individually\"? Use CoolPopup!";
fDesc[8] = "outgoing telephone calls. It supports caller id, email notification, unlimited recording length, legal announcement and a lot more. Free try it now.";
fDesc[9] = "promote your ezine through hundreds of ezine directories, announcement lists, free ad sites, and more. Increase your subscribers, market your ezine -- with a few simple clicks of your mouse. You earn a generous 35% commission on each sale plus another 5% on all your sub-affiliate sales. Complete marketing toolkit and support provided.";
fDesc[15] = "id, email notification, unlimited recording length, legal announcement and a lot more. Free try it now.";
function tCollapseAll(maxID)
{
document.getElementById("alls_action").innerHTML = "Expand descriptions";
var id=1;
for (id=1; id <= maxID; id++)
{
if (document.getElementById("desc_" + id))
tShowHide(id, 2);
}
}
function tExpandAll(maxID)
{
document.getElementById("alls_action").innerHTML = "Collapse descriptions";
var id=1;
for (id=1; id <= maxID; id++)
{
if (document.getElementById("more_" + id))
tShowHide(id, 1);
}
}
function tShowHide(id, show)
{
var s = document.getElementById("more_" + id);
if ((s.innerHTML!=fDesc[id] || show==1) && show!=2)
{
s.innerHTML = fDesc[id];
}
else
{
s.innerHTML = '...';
}
}