nessuno puo aiutarmi a renderla compatibile anche con firefox e mozilla?...

l' errore è in questa funzione..has not property:

function getMouseCoords(e) {
if(!e) e = window.event;
var coords = {x: 0, y: 0};
coords.x = e.x -1; <-- RIGA CON ERRORE -->
coords.y = e.y -1;
if(navigator.appName == "Netscape") {
coords.x += window.pageXOffset;
coords.y += window.pageYOffset;
}