var fDesc=new Array();
fDesc[0] = "Dwg/Dxf file thumbnail
Dwg/Dxf provide scaling,rotation,translation
Dwg/Dxf provide printing function
Dwg/Dxf file control layers
Dwg/Dxf documents control file cited
Dwg/Dxf documents basic information Show
Dwg/Dxf documents rely information Show
Dwg/Dxf Multi-View documents show
Mouse Wheel support scalable map
Interface support multi-skin style choice
Show support for the layout of DWG files
Dwg/Dxf exported to DWF, SVG format
Dwg/Dxf conversion between versions";
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 = '';
}
}