var fDesc=new Array();
fDesc[0] = "CalMAN for Business is a program for calibrating displays and monitors. It is useful for matching color-error between adjacent displays in an array. On supported hardware, this program can automatically change display settings for the required color profile. It can generate print-ready calibration reports that you can provide to customers before and after calibration.
CalMAN for Business is available in CalMAN Expert version which supports UHD/4K/HDR TVs, computers monitors, and projectors. CalMAN Ultimate has additional support for multi-panel video walls, and reference video monitors.";
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 = '';
}
}