var fDesc=new Array();
fDesc[0] = "9Clues: The Secret of Serpent Creek is an original hidden-object puzzle-adventure game, in which a unique Detective Mode enhances the gameplay. This thrilling detective drama merges horror elements with the look and feel of 1950’s USA.
A paranormal private investigator is contacted by her friend – a reporter named Helen Hunter – who pleas for help in a terrified voice. She urges the protagonist to come to the coastal town of Serpent Creek at once.";
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 = '';
}
}