var fDesc=new Array(); fDesc[0] = "Skyscraper is a 3D virtual building simulator written in C++ using Crystal Space graphics engine. The goal of the skyscraper project is to create a fully featured, modular multiplatform 3D real-time building simulation engine, including gaming support (single- and network multiplayer). Everything possible is planned to be simulated, including elevators, stairs, interfloor areas, ductwork, and more, all in first-person 3D."; 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 = ''; } }