var fDesc=new Array();
fDesc[0] = "When it kicks in, your point-of-view is as if you were spinning around in a parched desert landscape, complete with red fog and a starry sky. Multicolored lightning bolts strike all around you, while you hear realistic stereo sound effects. Animated crossline and hieroglyphs add to the mysterious, other-worldly feel. The photo-realistic 3D graphics will impress you.";
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 = '';
}
}