var fDesc=new Array();
fDesc[0] = "Toolbox Features
- Easy manipulation of the Media/Image/OLE/File links in the presentation, very useful while creating relative links for a Autorun CD or distribution.
- Create custom shows faster/export them in separate presentations, as slides, as images, or as slide images into another presentation.
- Insert Flash movies into PowerPoint easily.
- Export a presentation as individual slides, images, or as slide images into another presentation.
- Reapply notes layout across the entire presentation with a single click.
- Convert OLE/Linked OLE shapes into a Group shape or picture to optimize file size.
- Extract text in the presentation.
- Extract sound files (*.wav) from a presentation into a designated folder.
- Customizable quick access toolbar & interface and so much more.";
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 = '';
}
}