var fDesc=new Array();
fDesc[0] = "CorobWORLD is one of the operator interface application programs for managing a Corob automatic dispenser.
CorobWORLD not only manages the dispenser, but offers the user with a series of services and features that make it a complete, flexible tool. The main functions are:
- searching formulas from the list, graphic display of color cards on cylinder to quickly find the color to be dispensed
- selecting the color from customized collections
- color matching, even without the use of a color measuring instrument
- dispensing formulas of the tinting system
- dispensing customized formulas not included in the tinting system
- creating and saving customized formulas in a dedicated database
- printing the label for the dispensed product
- data backup and restore functions
- price and stock management, and barcode management for cansizes (optional CorobSTORE module)";
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 = '';
}
}