var fDesc=new Array(); fDesc[0] = "The Quality Control Inspection Software plans the quality control processes for incoming and outgoing goods, shortens the inspection time and optimizes the costs. The 'Inspection' screen intends to show how Mipsis inspects the lots. Inspection level act is a circular process composed of acceptances, rejects and conditional acceptances. A separate inspection plan may be applied to each customer and materials. The better the quality performance of the supplier, the less strict the inspection is. The 'Results' screen keeps all the decisions taken about the controlled products in the quality control storage. In case the products are rejected or conditionally accepted, the failure codes and rates should be entered. If the party is accepted, the rejected amount must be left out."; 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 = ''; } }