var fDesc=new Array();
fDesc[0] = "Holiday Jigsaw Easter 4 is a wonderful gift for any fan of classic puzzles. Assemble colorful jigsaws and enjoy an atmosphere of a bright spring holiday. Get to know the traditions of Easter and make your holidays more fun with this collection of 500 high-quality photos.
Set a difficulty that suits you and save your progress at any time. Convenient controls and a multitude of hints and tools make the game more comfortable to play.";
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 = '';
}
}