var fDesc=new Array();
fDesc[0] = "DXF 3D viewer with following features:
- View DXF version 12, 13 and 14 files (ascii/binary).
- Supports wireframe and surface rendering (OpenGL).
- Print.
- Export to PDF, PostScript, SVG.
- Export to jpg, png, tiff, gif, bmp.
- Copy to clipboard.
- Shx and true type fonts are supported (the shx files themselves don't come with the viewer).
- Very fast loading of DXF files.";
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 = '';
}
}