var fDesc=new Array(); fDesc[0] = "PF Color Tool is a handy utility when it comes to working with colors (web design, graphics, painting, etc.). It can be used to pick, convert, mix, identify and organize colors. You can pick colors from the huge color palette or anywhere on your screen. Moreover, you are able to create a list of custom colors and give them custom names.

In addition, the program can convert colors from a format to another (RGB, HSV/HSB, HEX) or mix colors together."; 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 = ''; } }