var fDesc=new Array();
fDesc[0] = "SQAS (Safety & Quality Assessment System) is a system to evaluate the quality, safety, security and environmental performance of Logistics Service Providers and Chemical Distributors in a uniform manner by single standardised assessments carried out by independent assessors using a standard questionnaire.
An SQAS assessment does not lead to a certificate but offers a detailed factual report which each chemical company needs to evaluate according to its own requirements.";
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 = '';
}
}