<BODY onload="window.moveTo(10,10);window.resizeTo(640,480)" onresize="window.moveTo(10,10);window.resizeTo(640,480)">
<BODY onblur="self.focus()">
<SCRIPT>
function keyPress() {
if (window.event.keyCode == 27)
window.close();
}
</SCRIPT>
<BODY onkeypress="keyPress()">
<SCRIPT>
function mouseMove() {
if (window.event.x != document.pozice.x.value || window.event.y != document.pozice.y.value) {
document.pozice.x.value = window.event.x;
document.pozice.y.value = window.event.y;
}
}
</SCRIPT>
<BODY onmousemove="mouseMove()">
<FORM NAME="pozice">
x = <INPUT type="text" name="x" size="4">, y = <INPUT type="text" name="y" size="4">
</FORM>
Náhled: