var fDesc=new Array();
fDesc[0] = "Publish and share digital presentation easily.
Easier to use and more powerful than PowerPoint; you can easily get started: creating a new project or editing the template by dragging and dropping on the unlimited canvas.
Create animated presentations in a mind-mapping style to capture attention. You can logically arrange your contents either from whole to part or part to whole. Make your audiences follow your mind, think logically and understand seamlessly.
Break the traditional slide-to-slide transition effect. These 3D transition effects such as 3D zooming, panning and rotating effect make your presentation play like a 3D movie, which will bring visual shock and deliver impressive experiences to your audiences.";
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 = '';
}
}