var fDesc=new Array();
fDesc[0] = "Pixel Puzzles Ultimate, Bringing puzzles to the digital age. With more than 17 FREE puzzles included, Pixel Puzzles Ultimate has a large range of puzzles in various sizes for you to try out and enjoy.
From square to rectangle to huge panorama pictures, with a massive variety of separately themed puzzle packs containing only the best images possible, each having a unique cut like no other jigsaw could. Pixel Puzzles Ultimate gives you the choice to play only the types of puzzles you really want to build.";
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 = '';
}
}