var fDesc=new Array();
fDesc[0] = "Take those cherished moments you captured on analog or digital camera and share them with friends and relatives, using a program that's as easy to use as drag-and-click, and as impressive as a movie trailer for a Spielberg film - PhotoSlide™!
Remember what you did with photographs in the old days? You know, mail a set to auntie Jean, print the cute family shot for the Holiday greetings cards, and stick the rest in a photo album the size of Mount Rushmore... well, now the computer age has come up with the ideal answer.
Imagine a clever little program that takes your pictures and creates a digital photo slide show you can email to anyone, burn into a CD or park on a website - with both music and graphics. Yes. That's what you can do with PhotoSlide.";
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 = '';
}
}