var fDesc=new Array(); fDesc[0] = "GeneRally HMap Editor is a height map editor for the game GeneRally. There is an original track editor for the game which is good, but limited when it comes to terrain height map editing. It works in full 3D and since I added various functions to it, it is also useful for other things apart from height map editing."; 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 = ''; } }