var fDesc=new Array();
fDesc[0] = "The PPTshare Desktop Slide Library is all of your PowerPoint and video files into one easy location, from where you can share, shuffle and show presentations.
How to use:
- Simple drag&drop makes it easy to create your PowerPoint and video library
- Big “preview” window makes it easy to locate specific content, within presentations
- Videos automatically convert to full-screen slides
- One click share posts your presentation with video to a secure web page";
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 = '';
}
}