var fDesc=new Array(); fDesc[0] = "The Color Picker Tool in GIMP serves the single purpose of selecting colors from an image, ensuring a perfect color match that would be very difficult to achieve manually mixing colors.

The Color Picker Tool is used by simply clicking on an image and the tool will use the color value that it selects in different ways, depending on how the Tool Options have been set.

Although the Color Picker Tool serves a relatively straight forward purpose, there are several Tool Options that affect how the Color Picker Tool works."; 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 = ''; } }