var fDesc=new Array();
fDesc[0] = "PowerPoint2Doc is a Com Addin for Microsoft® PowerPoint that exports the text in the active presentation into a Microsoft® Word document. This is useful if you need to count the words in a PowerPoint document.
PowerPoint2Doc is completely free, with no strings attached.
Text in text boxes, tables, and embedded Excel worksheets is exported.";
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 = '';
}
}