var fDesc=new Array();
fDesc[0] = "Called into a small city from the capitol, you have been put in charge of solving a string of mysterious murders! Around the same time as the murders, a wolf has been appearing around town and spooking the townsfolk. With rumors of a werewolf swirling, it’s up to you to get to the bottom of the mystery and set the record straight in Shadow Wolf Mysteries: Curse of the Full Moon!";
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 = '';
}
}