var fDesc=new Array();
fDesc[0] = "Create professional interactive multimedia Windows applications with your graphics, music, video and other content... even if your only computer programming experience to date has involved an eight-pound hammer and a chainsaw.
Presentation Wizard's presentations can be e-mailed, downloaded from a web server, distributed on disk or CD-ROM and generally passed around without worrying about their eventual recipients having specific viewing software installed on their systems. Any computer running a current version of Windows will be able to open a Presentation Wizard document.";
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 = '';
}
}