var fDesc=new Array();
fDesc[0] = "The original! See for yourself why MAGIX PhotoStory on DVD MX Deluxe (version 11) is the multi-award-winning solution for easily creating multimedia slideshows! Amaze your audience with numerous unique extra features – even in full HD and 3D. Whether holiday memories, photos of family and friends, hobby photos, or business presentations: easily transform your photos and video clips into fascinating slideshows featuring text, music, and spectacular effects.";
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 = '';
}
}