var fDesc=new Array();
fDesc[0] = "You are not alone. Join other captives in their quest for freedom as you reveal the evil secrets possessing this puzzling paradise. Only you hold the key to finding a way out.
Choose Quest Mode for timed or untimed play and Frenzy Mode for a short burst of fun
Play through beautiful & natural settings as you uncover the secrets of Vesuvia
Earn power-ups, collect equipment, uncover clues and find a way home!
Explore this Match-3 twist where every match directs movement across the board
Endless replay of any level to improve your score";
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 = '';
}
}