var fDesc=new Array();
fDesc[0] = "The Colour-Science Image Editor is a very fast workflow image editor. Images are precorrected with the automatic i2e image enhancement.
Features are:
- Automatic color, contrast and density enhancement (ACE, ABE)
- Local brightness enhancement in the shadows and highlights (SHE)
- Memory color enhancement of skin-, sky- and vegetation colors (MCE)
- Unsharp masking and local sharpening (LSE)
- Color Management
- Multiple output products
Editing can be done with a minimum of clicks and movements. It is the ideal software if you have to preview and edit a large number of images in short time. Image Editor is used in many professional photo labs to enhance customer orders before printing.";
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 = '';
}
}