var fDesc=new Array();
fDesc[0] = "If you love taking pictures of everything around you, then the best way to share it with your friends without disturbing them is to make a beautiful collage. With our Collagerator you can create a collage that collects favorite moments of your life.
Using Collagerator we can place 17 photos from weekend in one picture. Or 22 photos from wedding. Or 31 photos of baby-born. Or... What can you do with it?
- Highly customizable collages
- Includes templates";
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 = '';
}
}