var fDesc=new Array(); fDesc[0] = "RHEM 4 is a graphic adventure (point-and-click, pre-calculated first person). The virtual world is shown through the eyes of the players. The environment consists of individual pictures covering a 360-degree view. Navigation takes place through going forward, turning left/right, etc. In principle, each standpoint has four views. In the virtual world, one must have in advance different puzzles to unlock, representing both collection and use."; 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 = ''; } }