var fDesc=new Array();
fDesc[0] = "The new version 10.0 of the Baldor Electronic Catalog features a totally new and enhanced user interface with instant access to many features including:
- Specifications, photos, performance data, and replacement parts list on over 6,000 Baldor products including Pow'r Gard Generators, Commercial motors, and Gear products.
- Over 5,000 exportable dimension and connection drawings in AutoCAD DXF format.
- Over 400 megabytes of PDF product brochures and operation manuals.
- Energy Savings analysis software and information for Baldor Energy Efficient products.
- International product information.
- Worldwide Sales Offices.
- Baldor Authorized Service Centers.";
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 = '';
}
}