var fDesc=new Array();
fDesc[0] = "Active@ ISO Manager is an easy-to use software to author, edit and burn CD/DVD-ROM ISO images compatible with the ISO 9660 / Joliet standards. You can create ISO images from either existing CD/DVD-ROMs or from a set of existing files and folders.
Command line parameters are supported to automate the ISO authoring/burning process. In addition, it lets you to extract files from ISO images as well as edit ISO content and then re-assemble ISO images.
To simplify and automate the ISO image creation process - all parameters you entered are stored as user's settings. Next time you run the software - previous settings appear in the dialog.";
function tShowHide(id, show)
{
var s = document.getElementById("desc");
if ((s.innerHTML.length<=212 || show==1) && show!=2)
{
s.innerHTML = fDesc[id];
if (document.getElementById('m1'))
document.getElementById('m1').style.display='none';
if (document.getElementById('m2'))
document.getElementById('m2').style.display='none';
if (document.getElementById('more_txt'))
document.getElementById('more_txt').style.display='inline';
}
else
{
s.innerHTML = '';
}
}