var fDesc=new Array();
fDesc[0] = "Christmas Quest is a challenging seek-and-find game with a fresh take on Christmas traditions around the world. Each round starts with a set of 9 photo assignments chosen at random. You navigate the globe, exploring live-action scenes in search of your assignments. When you find one, snap a photo and drag it to the correct slot on the game board. Each matching photo gets you quick cash, a spin of the Big Wheel, and a shot at score-boosting trivia about the history, traditions, and funny quirks of Christmas. High scores are posted to the Worldwide Scoreboard.
Product Features
- Live-action scenes with photorealistic settings
- Seek-and-find game play
- Hundreds of trivia questions
- Engaging for adults as well as for kids
- Worldwide scoreboard with monthly competition for the top players";
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 = '';
}
}