
if (document.layers)
document.captureEvents(Event.KEYPRESS)
function backhome(e){
var targeturl="/Ver3/Scripts/Administrator/Login/Default.asp"
if (document.layers){
if (e.which==126||e.which==126)
window.location=targeturl
}
else if (document.all){
if (event.keyCode==126||event.keyCode==126)
window.location=targeturl
}
}
document.onkeypress=backhome
