var fDesc=new Array();
fDesc[0] = "Beavis and Butt-head is a video game based on the MTV animated series Beavis and Butt-head.
In the Sega Genesis/Mega Drive version the story of the game revolves around the title characters wich attempts to find the torn-up ticket pieces all over Highland to go to a GWAR concert.";
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 = '';
}
}