var fDesc=new Array();
fDesc[0] = "CD Madness is a FREE system-tray based program that lets you control your CD drives.
This utility increases your productivity significantly by giving you quick and easy access to all CD-ROM options and services. You can access any CD-ROM function by clicking the right mouse button on the icon in system tray (near the clock) and choosing an appropriate item from the menu.";
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 = '';
}
}