var fDesc=new Array();
fDesc[0] = "Halloween is a time for joy, fear, treats and tricks. If you're preparing for the holiday and don't know where to find ideas for décor, treats, costumes or gifts, Holiday Puzzle Halloween 3 can give you 500 of the very best ideas for how to make your Halloween as fun and original as possible.
Main features:
- 500 high quality unique images.
- Useful hints, sort tool and magnifying glass.
- Game difficulty options.
- Save game progress as you go.";
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 = '';
}
}