var fDesc=new Array();
fDesc[0] = "A disastrous avalanche... an evacuation... and mysterious residents who turn cold right before your eyes. In this sequel to the classic hidden-object puzzle adventure game, you’ll have to find secrets buried under an avalanche of snow in Phantasmat: Crucible Peak.
You planned for years to ski the Alps, but your dream vacation turns into a nightmare when you stumble upon a resort town, lost five years ago in an avalanche. Uncover the mystery of what happened here.You'll have to figure out if anyone survived.";
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 = '';
}
}