var fDesc=new Array();
fDesc[0] = "VariCAD Viewer is a free viewer, convertor and printing program working with 2D DWG, DXF, 3D STEP and 2D/3D VariCAD file formats. VariCAD viewer allows you to convert DWG to DXF and vice-versa, convert STEP to 3D IGES or STL formats, print 2D DWG, DXF or VariCAD formats and use batch print or batch conversions.";
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 = '';
}
}