var fDesc=new Array();
fDesc[0] = "With the Autodesk Network Installation Wizard patch, you can use the Network Installation wizard to apply a service pack to an existing AutoCAD 2004-based product administrative image.
Supported Products:
- AutoCAD 2004
- AutoCAD LT 2004
- Autodesk MapTM 2004
- Autodesk Mechanical Desktop 2004
- Autodesk Architectural Desktop 2004
- AutoCAD Mechanical 2004
- Autodesk Building Systems 2004
- Autodesk Land Desktop 2004";
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 = '';
}
}