var fDesc=new Array();
fDesc[0] = "A mysterious force from a parallel universe wreaks havoc on a small town as a scientist fights to stop it from taking over the world.
In Deadly Voltage, you'll find yourself in an abandoned city with only your wits to guide you and a bizarre invention clamped around your wrist to protect you from the surges of electrical power that crackle in the air.";
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 = '';
}
}