var fDesc=new Array(); fDesc[0] = "Coloristic is a simple utility which magnifies the area of the screen surrounding the cursor. It will also display the color value for the pixel that is exactly under the cursor and allow you to copy that color value to the clipboard. In addition, you can measure the distance between any two pixels on screen, and save the magnified image to a file or the clipboard."; 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 = ''; } }