var fDesc=new Array();
fDesc[0] = "LinkCAD is the most robust and powerful CAD translator available and supports a wide range of file formats.LinkCAD runs on Windows 95, 98, 2000 and NT PCs. Linux and Sun Solaris versions are also available.
Features:
-Display the loaded drawings in the built-in CAD viewer, measure distances and highlight broken polylines;
-Correct common design problems, such as open or self-intersecting polygons;
-Convert several files without user intervention in batch mode.";
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 = '';
}
}