var fDesc=new Array();
fDesc[0] = "Accelerate your design reviews with Autodesk® Design Review software. It’s the free*, all-digital way to view, mark up, print, and track changes to Autodesk 2D and 3D design files—without the original design software.
Features:
-Increase efficiency—Use intuitive tools to measure, mark up, and review designs
-Enhance communication—Share changes with your extended team, quickly and concisely
-Reduce costs—Eliminate paper and avoid misunderstandings
-Improve reviews—Enjoy enhanced features and tools for DWF Viewer and Volo View users";
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 = '';
}
}