var fDesc=new Array();
fDesc[0] = "The color management tool for ICC profile managing, embedding, inspecting and editing.
Profile editor for
- All relevant header entries
- All tags containing text information
- Red, Green, Blue, White and Black points
- Gamma values for monitor profiles
Tree-based profile browser (similar to the Windows
Explorer)
Embedding, exporting, removing profiles into (from)
image file sets with image browser support
Profile summary at a glimpse
Detailed numerical and graphical tag displays
CIE L*a*b* (L*C*h*) and XYZ (Yxy) color displays
Gamut graphs and gamut comparisons
Neutral rendering curves and transformation curves
for Device Link Profiles
Smart private tag displays
In-depth file check against ICC specification
Windows 7 / Vista / XP / 2000 compatible";
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 = '';
}
}