var fDesc=new Array();
fDesc[0] = "DuraSuite Labeling Software allows you to create OSHA and ANSI compliant labels. The software includes a library of over 1,800 symbols and a database with information on more than 1,500 chemicals. Create code-compliant and general safety labels including:
- GHS and HazCom 2012 labels.
- NFPA 704 (NFPA Diamond) and RTK chemical labels.
- NFPA 70E arc flash labels.
- ANSI/ASME A13.1 pipe markers.
- IIAR ammonia pipe markers.";
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 = '';
}
}