Aphofix: Sondertastenabfrage unter Netscape 6.x

Hallo da draussen,

ich möchte unter Netscape 6.x die sondertasten abfragen.
Habe da ein script gefunden welches dies im IE & Netscape 4.x kann,
nur leider nicht unter NC 6
Weis jemand wie das geht ?

Hier mein Fundstück...

<HTML>
<HEAD>
<TITLE>Sondertasten</TITLE>
<SCRIPT LANGUAGE="JavaScript"><!--
function taste(e){
if (window.Event){//Netscape
window.status += "["
if (e.modifiers & Event.ALT_MASK)
window.status += "Alt"
if (e.modifiers & Event.CONTROL_MASK)
window.status += "Strg"
if (e.modifiers & Event.SHIFT_MASK)
window.status += "Umschalt"
if (e.modifiers & Event.META_MASK)
window.status += "Meta"
window.status += "]"
} else{//IE
window.status += "["
if (event.altKey)
window.status += "Alt"
if (event.ctrlKey)
window.status += "Strg"
if (event.shiftKey)
window.status += "Umschalt"
}
}
//--></SCRIPT>
</HEAD>
<BODY onload="document.forms[0].elements[0].onclick=taste;
window.status=''">
<H3>Sondertasten</H3>
<FORM>
<INPUT TYPE="BUTTON" NAME="Button1" VALUE="Klick mich!">
</FORM>
</BODY>
</HTML>

vielen dank für eure mühe im vorraus.

Gruß
Aphofix