Chiedo aiuto al Forum ....

ho questo script (scaricato da HTML.IT

// By Jari Aarniala [foo@mbnet.fi]
if(navigator.appName == "Microsoft Internet Explorer" &&
parseInt(navigator.appVersion) >= 4){
ie4 = true;
}
else {
ie4 = false;
}
function changeColor(){
if(ie4){
what = window.event.srcElement;
if(what.className == "link"){
if(what.style.color == "white"){
what.style.color = "yellow";
}
else {
what.style.color = "white";
}
}
else {}
}
}
document.onmouseover = changeColor;
document.onmouseout = changeColor;
// -->

su Mozilla non funziona .... c'è modo di farlo andare ??