var fDesc=new Array();
fDesc[1] = "other applications of this kind. With this tool you can write images on a disc, mount on a virtual drive, create an image from a disc or convert it to different formats, create bootable CDs/DVDs, etc.";
fDesc[2] = "minutes. Thanks to its intuitive and easy to use interface, making copies of your data files has never been so simple. You just drag and drop the files or folders you want to copy to the FileCD window.";
fDesc[3] = "NT / 2000/ 2003 / XP / Linux All Distributions) and CD-ROM (ISO 9660, Joliet All Distributions)";
fDesc[4] = "ISO images compatible with the ISO 9660 / Joliet standards. With this incredible program you can create create ISO images from either existing CD/DVD-ROMs or from any existing files and folder.";
fDesc[5] = "format. And, as you can suppose, DoISO is a simple program that will let you create and burn ISO images in an easy way.";
fDesc[6] = "an entire CD, DVD or other medium. It can output the resulting structure to an ISO 9660 file, ready to be burned with most CD-burning tools.";
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 = '...';
}
}