var fDesc=new Array();
fDesc[0] = "QUALIPROxl WEB is a quality management software designed in 2003 to facilitate the implementation and running of quality management systems based on a single interface, in accordance with the ISO 9001 requirements.
With its optional modules, QUALIPROxl WEB features extend to environmental management (according to ISO 14001 standards), occupational health & safety (according to the OHSAS 18001 standards), food safety (according to ISO 22000 - HACCP standards) and to other areas. QUALIPROxl WEB can move towards an integrated QSE management solution or to any other solution.";
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 = '';
}
}