var fDesc=new Array();
fDesc[0] = "CDMenuPro has been developed for you to create impressive Autorun CD menu applications for use on CD ROMs, DVDs and USB Flash Drives* without any previous programming knowledge.
It comes with a large number of project assistants, templates and additional software that enable anyone to create professional results in no time at all.
Using drag-&-drop technology it is easy to drag the documents or menu objects that you require into the menu window.";
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 = '';
}
}