var fDesc=new Array();
fDesc[0] = "The new AutoCAD® 2010 and 2011 performance plug-ins from AMD are designed to optimize application performance on ATI FirePro™ professional graphics.
Building, infrastructure and manufacturing practitioners will experience a phenomenal performance boost when running AutoCAD® 2010 or 2011 on ATI FirePro™ professional graphics, compared to AMD's consumer graphics. The entry-level ATI FirePro™ V3800 achieved almost double the performance per dollar of a mid-ranged consumer graphics card, while the midrange ATI FirePro™ V5800 achieved more than 2X performance per dollar of a high-end consumer graphics card.
AutoCAD 2010 and 2011 performance plug-ins are supported on the following AMD graphics adapters: ATI FirePro™ Vx800 series, ATI FirePro™ Vx700 series, ATI FirePro™ RG220, ATI FireGL™ Vx700 series, ATI FireGL™ Vx600 series";
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 = '';
}
}