var fDesc=new Array();
fDesc[1] = "contains ... (1) Access 2007 - database management.. (2) Word 2007 - Word processing. (3) Excel 2007 - spreadsheet. (4) PowerPoint 2007 - presentation software. (5) Outlook 2007 - Email and Personal Manager. (5) Publisher 2007";
fDesc[2] = "Windows O.S. It has a lot of features for handling and managing files and folders. Its user's interface is similar to the famous old program, Norton Commander.";
fDesc[3] = "features. Additionally, it has a built-in professional download client with resume capabilities. The browser supports many skins and a few plug-ins.";
fDesc[4] = "or save the keys into a file that can be stored in a safe backup location. It is very simple to use and has a good amount of options and a good technical support. This tool is a good option for your computer support arsenal.";
fDesc[8] = ", Australian & UN stamps, complete with images, and indexed by the industry-standard SCOTT? numbering system.";
fDesc[9] = "help menu. All the products that Microsoft offers has their help menu incorporated in your CD Product or online. This update will install the latest assistance content for the Microsoft Office Excel 2007 Help file and the Office Excel 2007 Developer Help file.";
fDesc[11] = "you to make simple scores, with a number of basic features borrowed from its sibling Finale. NotePad offers many powerful and timesaving features for music educators, students and hobbyists, including compatibility with Finale 2007 files.";
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 = '...';
}
}