var fDesc=new Array();
fDesc[0] = "Astra Gift Maker is a free tool for creating stand-alone jigsaw puzzles out of arbitrary images (family pictures, images downloaded from the Internet, etc.). Create a jigsaw puzzle and email it to your friends or publish it on your web page.
No additional software is required to put such a puzzle together: everything is included in the puzzle itself. Yet the puzzles come out compact and suitable for distribution.";
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 = '';
}
}