var fDesc=new Array();
fDesc[0] = "Autorun CD Studio is the software to create 32 bit programs that will be automatically executed to display a splash screen when a CD/DVD is inserted into the CD/DVD drive.
A professional autorun CD program is important to your company.
- It advertises your company's Corporate Identity.
- It raises customer satisfaction.
- It eleminates confusion when exchanging data with CD-Rs, thus raises work efficiency.
A professional autorun CD menu program is cool.
- A dull data CD vs. a multimedia-enabled interactive CD with personal style -- which will you choose? Which will your friends choose? Think about it.";
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 = '';
}
}