var fDesc=new Array();
fDesc[0] = "DWG to PDF is a batch converter that allows you to convert DWG to PDF, DXF to PDF without the need of AutoCAD.
Key Features:
1. Convert AutoCAD DWG and DXF files to vector PDF in batches.
2. Stand-alone utility - AutoCAD NOT required.
3. Supports every version of DWG/DXF files (Supports R2.5/2.6, R9, R10, R12, R13, R14, R2000/2002, R2004/2005, ... formats)
4. Very easy to use.
5. Create and format PDF bookmarks.
6. Optimize PDF output settings for print, press or web.
7. Multiple options for use.";
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 = '';
}
}