var fDesc=new Array();
fDesc[0] = "This add-in enables JT files to be accessed from within Design Review with full fidelity and accuracy. Before using this add-in, you have to first install Autodesk Design Review.
Autodesk Design Review JT Importer is easy to install and use; to import a JT file into Design Review you must follow these steps:
- Choose File > Import. The Import File dialog box opens.
- From the Files of Type drop-down list, select JT (*.jt).
- Navigate to where the JT file you want to import is stored.
- Select the file you want to import and click Open. The published DWF file opens in Design Review.";
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 = '';
}
}