var fDesc=new Array();
fDesc[0] = "a.Shooter is the first prototype release of a.Game production: a solely acoustical ego-shooter game. The player's task is to shoot up sonic invaders conquering a virtual room as defined by panorama, pitch and volume.
a.Shooter 0.1 (German/English for Windows 2000/XP)
headphones and joystick highly recommended!";
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 = '';
}
}