var fDesc=new Array();
fDesc[1] = "create professional-looking reports by adding dynamic graphics and animated charts. Besides, you can choose different formats for your report such as a bar chart, pie chart or cross-tab summary tables.";
fDesc[2] = "with many details about the books you have. This powerful application is a great solution for those who want to create and maintain a complete inventory perfectly organized and easily manageable.";
fDesc[3] = "publishers remark is the high security on file transfers. The application uses SSH/SSL channels when uploading or downloading files and folders. Whenever a transfer is made, the program checks its integrity to make sure that the files have been moved safely.";
fDesc[4] = "Explorer is a good option, which comes with many interesting features, such as printing each font sample up to four times and adding many font effects, etc.";
fDesc[5] = "pressure, blood sugar or weight. Stores multiple reading per day and calculates averages. Great software for people with diabetics and hypertension.";
fDesc[6] = "Statement and Balance Sheet, the Trial Balance report, and General Ledger (detail) report.";
fDesc[7] = "applications display a form showing attributes of a file and demonstrate many of the new features available with Visual Basic 2005. It helps you to build a smart client application and design-time data enhancements.";
fDesc[8] = "reports. This website statistics software supports 430+ search engines from 120 different countries.";
fDesc[10] = "features, Alterwind introduces unique features for professional SEO (Search Engine Optimization) and advertising campaign tracking.";
fDesc[11] = "Extremely suitable for private warehouse, distribution center, MRP for manufacturer, logistic services and storage operation.";
fDesc[12] = "Analysis worksheet, sample policy templates, sample disaster recovery plan and Incident Report form, and more.";
fDesc[13] = "web site usage statistics, referring sites, traffic flow, search phrases and much more! Download FREE trial version today!";
fDesc[15] = "Quotation, Proforma Invoice, Sales Confirmation, Purchase Order, Official Invoice. Further more, Sales report and Invoice report";
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 = '...';
}
}