var fDesc=new Array();
fDesc[0] = "DWF to DWG Converter, help you convert dwf to editable dwg file. there are two versions available. standard version is an AutoCAD Addin, and Pro version is a stand alone program, no AutoCAD required.
-Supports AutoCAD 2011~ R14;
-Supports the new DWF v6.0 multi page specification;
-All DWF elements generated by AutoCAD "plot to DWF" are supported, including true type fonts, ellipses, arcs and elliptical arcs.
- If layers are saved in DWF, they will be recreated in the DWG ;";
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 = '';
}
}