var fDesc=new Array();
fDesc[0] = "ZeallSoft FunPhotor is fun and easy to use photo blending software, a fun-filled Windows application that lets you blend your family portraits with well known artwork to create comical images. With a few short steps, you can add your face to the carved granite US Presidents on Mount Rushmore, put your portrait on a $100 bill, or create all sorts of gag gifts for your friends.
You can choose from more than 100 high quality templates that include the Mona Lisa, a bodybuilder, or the US President speaking from his official podium. You can also build your own custom 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 = '';
}
}