var fDesc=new Array();
fDesc[1] = "shockwave is very small in size and takes couple of minutes to download and install in a computer.The installation process runs in back ground so it does not disturb your routine work";
fDesc[2] = "user interface is built around a simple 4-step workflow comprising: Capture mode (to capture feed from different sources); Edit mode (Import Media, Trim, Fix/Enhance with Magic Tools, Add Effects) etc.";
fDesc[3] = "the drive, allowing you then to backup the movie using a DVD backup tool such as CloneDVD.";
fDesc[4] = "disk. Supporting various operating systems it allows you to install multiple operating systems on a single PC according to your needs and multiple operating systems on a single partition.";
fDesc[6] = "Analyze avi files and discover which codecs are needed and get a lot of info about the file. Easy to use interface.";
fDesc[8] = "Movienizer database and download all the information about that movie in a single click. You can get every small detail of the movie easily including names of movie director, actors, co-actors, release year and much more.";
fDesc[9] = "Director Server, users can recover accidentally lost/deleted partitions. It also allows hard disk editing at sector levels and enables users to extract information that was removed/lost by accident or virus attacks, or due to hardware/software failures.";
fDesc[10] = ", demos, prototypes, simulations, and eLearning courses for the web, Mac and Windows® desktops, DVDs, and CDs. Integrate virtually any major file format, including video created with Adobe Flash® software and native 3D content, for the greatest return on your creativity.";
fDesc[11] = "Director, position the monitors of your systems side-by-side and then you can control them via one keyboard/mouse.";
fDesc[14] = "shop management software but also understand that automotive software is only as good as the company that supports it.";
fDesc[15] = "industry standard for creating screen savers with Director. Cross platform solution with Macintosh Version available.";
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 = '...';
}
}