var fDesc=new Array();
fDesc[0] = "TNGViewer is a standalone application for local display of TNG 3D™ presentations.
With this tool you can save images and movies of live presentations.
TNGViewer can save QuickTime™ images and movies of live 3D presentations.
It can also open Autodesk FBX, 3DS, OBJ, DXF files, COLLADA DAE files, LightWave LWO and LWS, modo LXO and many more formats.";
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 = '';
}
}