var fDesc=new Array();
fDesc[0] = "When you insert a commercial program disc it will often start automatically with a graphical menu that lets you make choices like installing a program, displaying a web page, viewing documentation or information material and so on.
Building these discs and menus manually is a lot of work and requires programming skills – and even if you have the skills it takes a long time.
Ashampoo MyAutoplay Menu takes all the work out of building autoplay discs with a simple point-and-click interface. And it includes CD and DVD burning so that you can create your finished discs without leaving the program.";
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 = '';
}
}