var fDesc=new Array();
fDesc[0] = "CDInterface studio is a free tool to create autorun/autoplay cd menus. A selection of cd menus to choose from. Will autorun any file you want-html,txt... Will organize your softwares and have all the information you want - title, description, serial number, updates, etc...An easy to use interface. No programming language is required.
Features:
Autorun/autoplay.
A selection of cd menus to choose from.
Set a background picture to cd-menu.
CD Menus:
Autorun/autoplay any file you want - html, exe, txt...
Software compilation - Will organize your softwares and have all the informations you want - title, description, serial number, updates, etc...";
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 = '';
}
}