var fDesc=new Array(); fDesc[0] = "Small Object Viewer (SOV) is a useful utility for both novices and professionals working in the graphics API Direct (X) environment. The program is able to view some of the formats of 3D models popular among game developers, such as X, 3DS, DBO and MDL (2,3). The program enables you to change the texture of the object, adjust the lighting in the scene and to determine how best to configure the object to export it to the game."; 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 = ''; } }