var fDesc=new Array();
fDesc[0] = "The Disc image system is an Editor, Converter and a driver that can mount ISO CD/DVD images into a Microsoft Windows 2000/XP/2003 based system. This gives the impression that a new CD/DVD-ROM drive has been added and a disc has been inserted.
The small size of the driver and its simple operation allow an integration which is similar to actually using CD/DVD-ROM hardware, but as the drive is virtual, there is no hardware noise or lag. It is even possible to mount as many images as there are available drive letters.";
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 = '';
}
}