var fDesc=new Array();
fDesc[0] = "With Print Artist Photo Projects Bring Your Photos to Life! Create and print professional quality photo projects in minutes.
Main features:
- 1,500 Creative photo templates
- Thousands of art images
- 15,000 Beautiful graphics
- Postcards
- Birthday cards
- Gift wrap and tags
- Invitations
- Photo calendars
- Party bags and 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 = '';
}
}