var fDesc=new Array();
fDesc[0] = "This plug-in lets you import DXF files into Google Sketch-up.
It is available as freeware and used it accordingly.
Features:
-DXF/3DS/VRML/STL-Plugin for the free Google-3D-Modeller
-converts SketchUP.SKP to DXF- or STL-Format and using the
-LTplus OpenFX 3D-Modeller as well to 3DS/VRML-Format";
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 = '';
}
}