var fDesc=new Array();
fDesc[0] = "Pirate Mosaic Puzzle: Caribbean Treasures is a logic game for Windows users. It offers 120 mosaic puzzles just waiting for you to assemble them. You’ll find all kinds of patchwork puzzles: easy, hard, long and short. You will start from the location Cabin boy and unlock all 6 locations step by step. There are several conditions in each level, so you must complete them all, get keys and unlock new locations.";
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 = '';
}
}