var fDesc=new Array();
fDesc[0] = "Try revolutionary slideshow software to create
brilliant 3D movies from your photos, videos, and music!
Make animated slideshows with photos, videos, and music
Apply stylish transitions and eye-catching photo effects
Create amazing slideshows from professional templates
Add voice comments, captions, title clips, and even 3D collages!
Convert photo movies to any video format or burn to DVD";
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 = '';
}
}