var fDesc=new Array(); fDesc[0] = "There are many times that, when you are using a specific program, you need to know what is the exact position of the screen, where your mouse pointer is. It is not always easy to know, and sometimes this annoying situation can drive you crazy while you are moving your mouse from one side to the other, looking for the pointer. But from now on, this is situation is over thanks to this program: CrossHair.

When you press a hot key, CrossHair displays two lines crossing each other, one horizontal and other vertical, similar to a "shoot target", and it intersects on the current position of your mouse pointer. If you keep pressed the roving hot key, the lines will follow your pointer for over any program or window. But, if you press the stationary hot key, CrossHair will display two static lines only on the current mouse pointer position.

CrossHair does not use many resources of your system, and it works in a transparent way, so you will not notice its presence until press a hot key. CrossHair could be very useful when you are using design programs. It is also a free tool and it's very lightweight with only 70 kb of average."; 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 = ''; } }