var fDesc=new Array();
fDesc[0] = "This is an nifty little old-schooled action game. You are going to a friends house for a Halloween party. All of a sudden the lights go out and two of your friends get captured. You suspect a ghost from the Vancouver mansion is responsible. So you go and try to save them. You can also go trick-or-treating.
In this game you get to use several different weapons that have specific functions for certain enemies and there is a little bit of thinking involved.";
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 = '';
}
}