var fDesc=new Array();
fDesc[0] = "Schneider CAD Library application supports international standards and provides comprehensive CAD drawings libraries of Schneider Electric products content and symbols, enabling users to easily create standards-based designs that comply with industry requirements.
This library includes 2D data files for computer-aided design (CAD) in DWG,DWF and DXF formats representing dimensions , electrical drawings , footprint views , mounting , fixation and safety perimeter for Schneider Electric products.";
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 = '';
}
}