Ciao
<script language="JavaScript1.2">
<!--
document.onkeydown = backhome;
function backhome(e){
if (document.layers){
if (e.which==97)//tasto a per Netscape
window.location="mailto:xxxx@libero.it";
}
if (document.all){
if (event.keyCode==65)// tasto a per Msie
window.location="mailto:xxxx@libero.it"
}
}
// -->
</script>
97 = N" tasto a per Nestscape
65 = N" tasto a per Msie
Massimo