<script language="JavaScript1.2">
<!--
if (document.layers)
document.captureEvents(Event.KEYPRESS)
function backhome(e){
var targeturl="http://www.destinazione.ext"
var targeturl2="http://www.destinazione2.ext"
if (document.layers){
if (e.which==104||e.which==72)
window.location=targeturl
if (e.which==103||e.which==71)
window.location=targeturl2
}
else if (document.all){
if (event.keyCode==104||event.keyCode==72)
window.location=targeturl
if (e.which==103||e.which==71)
window.location=targeturl2
}
}
document.onkeypress=backhome
// -->
</script>