var fDesc=new Array(); fDesc[0] = "ICC Profile Toolkit adds an infotip to .icc and .icm files. The infotip will display the (internal) description, class e.g. monitor ,type of color space e.g. RGB, and the, of the selected profile.

How you see the infotip will depend on how you have your folder options set up.

The extension also adds a right-click context menu entry. This entry depends on the currently viewed folder in Explorer."; 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 = ''; } }