var fDesc=new Array();
fDesc[0] = "The Autodesk Inventor Plug-in 8.0 for Volo View 3 is used for viewing, marking up, and measuring .ipt, .iam, or .idw files created with Autodesk Inventor 5.3 or later.
The Autodesk Inventor Plug-in 8.0 was created for Volo View 3 users who want to view Autodesk Inventor 5.3 or later files.
NOTES:
- You do not need this plug-in if you have Autodesk Inventor 8 installed.
- You cannot use this plug-in if you have earlier versions of Autodesk Inventor installed on your computer.
- The Inventor Plug-in 8.0 is supported on the following Windows(TM) platforms only:
* Windows 2000 Professional SP2 or later
* Windows XP Professional/Home SP1";
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 = '';
}
}