var fDesc=new Array();
fDesc[0] = "This program is a quick 3D model browser for Windows 9x/2K/XP which allows to have a 3D preview of models stored in the following file formats :
- 3DS - 3D Studio binary export format
- ASC - 3D Studio ASCII export format
- DXF - AutoCAD ASCII exchange format
- LWO - LightWave binary export format
- OBJ - WaveFront ASCII export format
- T3D - UnrealEd ASCII brush format
Main features:
- Four display modes : Vertices, Wireframe, Transparent, Opaque
- Auto fitting model to viewport (auto-center and auto-resize)
- Ability to highlight one of the meshes inside the model
- Vertex and polygon count display
- Auto-rotate and zoom in/out";
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 = '';
}
}