var fDesc=new Array();
fDesc[0] = "DVision is an easy-to-use 2D/3D viewer for Windows platform with OpenGL hardware support. It allows viewing, converting and simple editing of some popular 2D/3D file formats. It is a powerful application written entirely in C , so it´s extremely fast. The DVision graphics engine was developed especially for this software to bring you high quality real-time rendering.
Main Features:
- Support of 18 popular 2D and 3D file formats
- Fast import/export operations
- Different rendering modes
- Easy scene rotation, zoom and pan
- 2D/3D editing tools
- Built-in Windows Explorer-like file browser
- Flexible and intuitive user interface
- Support of skeletal animation and weighted vertices
- Render scene to clipboard, to a JPEG file, or directly to a printer
- Own file format for storing model data
- Open interface for writing your own import/export/edit plug-ins
- Ability to highlight separate scene objects
- Customizable full screen mode
- OpenGL hardware acceleration support";
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 = '';
}
}