var fDesc=new Array();
fDesc[0] = "Slideshow Screensaver Maker creates professional-looking screensavers using your photos which you can send to your friends and relatives. All you have to do is select photos and choose a name for your screensaver, Slideshow Screensaver Maker will do the rest!
These screensavers use special transition effects for blending between pictures. Furthermore, you can specify a number of settings, such as the order of the pictures, the effect rate, the number of pictures simultaneously displayed on the screen and much more.";
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 = '';
}
}