var fDesc=new Array();
fDesc[0] = "A3dsViewer is a free, fast and simple 3DS file viewer.
Features:
- Converts 3DS files to HTML5 (webgl, three.js) format.
- Textures export. Transparent/alpha textures also supported.
- Axes export.
- Background color export.
- HTML5 output settings dialog.
- Converts 3DS files to POV-Ray format.
- Provides zooming possibility with mouse wheel.
- Provides zoom to rectangle possibility with ctrl key down and left mouse button.
- Possibility to preview 3ds model from different top, left, right, front, back and isometric views.
- Shows bounding box.
- Shows lights positions.
- Shows cameras positions.
- Possibility to download more than 400 3ds files for free.
- Possibility to upload/share 3ds files.
- Full screen mode.
- Screenshot: JPG and PNG file formats supported.
- Compress to ZIP - required only one click to get all texture files and 3ds file packed to the ZIP archive.";
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 = '';
}
}