var fDesc=new Array(); fDesc[0] = "DXGL Wrapper is a program developed to emulate API calls thru OpenGL commands and other platform specific commands in order to run DirectX 8 application running on other platform than Windows. Run the Wrapper. To enable Direct3D 8 to OpenGL emulation, check the button "enable d3d8 immediate mode (d3d8.dll)). To disable wrapping and get back to original Direct3D 8, uncheck the button."; 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 = ''; } }