var fDesc=new Array();
fDesc[0] = "You can now forget about pasting pictures onto your album.
With My Easy Album you can create a real photo album like a professional, straight from your computer!
In a few minutes, you can design an album with your own pictures. You can send it out for printing via the Internet or in a CD, and you'll receive it at your home in 10 workdays.";
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 = '';
}
}