var fDesc=new Array();
fDesc[0] = "Help young Caroline solve her father's mysterious disappearance in A Vampire Tale. Caroline's search leads her to Transylvania where she uncovers an ancient ruin and the prison of a centuries old vampire. Accidentally freeing the vampire sweeps Caroline into the middle of a vampire clan war that has raged for a millennia. Help Caroline navigate the unexpected twists of treason and betrayal in this exciting Hidden Object game!
Explore a mysterious world
Beautiful gothic artwork
Amazing replay value";
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 = '';
}
}