var fDesc=new Array();
fDesc[0] = "Discover Ashampoo Slideshow Studio Elements now and create cool slideshows that you can enjoy with family and friends.
When you’re happy with your result, Ashampoo Slideshow Studio Elements produces a WMV file of the finished slideshow.
Features :
- Automated Ken Burns Effects (panning and zooming)
- Professionally designed templates for subtitles and logos
- Adding of background music
- Adding of images, texts and shapes
- Individual editing of picture transitions";
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 = '';
}
}