var fDesc=new Array();
fDesc[0] = "Jigtopia is the perfect jigsaw puzzle game that is guaranteed to give you hours of fun.
* Choose how many pieces you want for the jigsaw puzzle.
* Authentic piece shapes.
* Eight different templetes to create the puzzle pieces.
* Select whether to make all the pieces the same shape or to make each piece unique.
* The hint and neighbor feature helps you in solving the most difficult puzzle.
* Adjustable background ghost image helps solving.
* Pieces can be randomly rotated for an even greater challenge.
* Create your own new jigsaws with images from the internet, your digital camera or scanned pictures.
* Create self-contained 'Gift' jigsaws to give to friends.
* Add background music to your puzzle.
* Organize your puzzles in categories.
* Showcase your completed puzzle in the gallery.";
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 = '';
}
}