var fDesc=new Array();
fDesc[0] = "basICColor CMYKick brings you the possibility to do color correct printing on your RGB printing system in an easy way.
Features:
4basICColor CMYKick creates ICC profiles for CMYK printers
such as laser oder inkjet printers with RIP, large format printers,
digital printing machines …
4Simple handling (drag and drop)";
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 = '';
}
}