if (document.layers)
document.captureEvents(Event.KEYPRESS)
function backhome(e)
{
var targeturl="design"
if (document.layers)
{
if (e.which==104||e.which==72)
window.location=targeturl
}
else if (document.all)
{
if (event.keyCode==103||event.keyCode==71)
window.location="topg.htm"
}
}
document.onkeypress=backhome

 
 