var fDesc=new Array();
fDesc[0] = "Fantasy Mosaics 18: Explore New Colors is a puzzle game for Windows users. Uncle Aaron and the mysterious lady penguin go on a vacation and explore new colors for thier mosaic puzzles. Along the way they make new discoveries and build a fantasy landscape. You'll enjoy fantasy mosaics and experience a new feature that allows you to view the background art while a puzzle image is in progress.";
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 = '';
}
}