var fDesc=new Array();
fDesc[0] = "GHS compliant SDS and Safety Label Authoring Tool for Chemical Manufacturers is a tool for authoring Global Harmonized Standard (GHS) compliant Safety Data Sheet (SDS) documents and Safety Labels.
This tool will allow EH&S staff to author and organize GHS data and generate SDS and Safety Label documents for your organization.
Feature include:
- Author Safety Data Sheets (SDS) which conform to GHS standard formatting
- Organize your organization's GHS records
- SDS revision control and change tracking
- Multiple languages (translation of data) supported
- Built-in catalog of GHS hazard codes and precautionary phrases
- Create user-defined library of phrases for easy document authoring
Free and paid versions are available.";
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 = '';
}
}