var fDesc=new Array(); fDesc[0] = "Magnify follows the mouse anywhere around the screen, and zooms in on any part of the Windows desktop. You will see the pixels underneath the mouse pointer in detail in Magnify's own window. You can resize the Magnify window to see more of the desktop, or adjust the magnification from a level of 1 to 24. Magnify can display a grid so you can easily count pixels. The RGB values of the pixel immediately underneath the pointer are shown, so if you like a colour you can easily copy it, onto your own web-page for example. And Magnify is free!"; 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 = ''; } }