var key1="32";
var key2="69";
var key3="70";
var key4="114";
var x='';
function handler(e) {
  if (document.all) {
  var evnt = window.event; 
  x=evnt.keyCode;
  } else
    x=e.charCode;
       if (x==key1) location.href='brothers/index.htm';
       if (x==key2) location.href='brothers/elmerspage/index.htm';
       if (x==key3) location.href='brothers/fuddspage/index.htm';
       if (x==key4) location.href='../../index.htm';
       // You could do something like redirect the user to another page:
      // if (x==key1) location.href='http://www.expertsrt.com';
    }
    if (!document.all) {
    window.captureEvents(Event.KEYPRESS);
    window.onkeypress=handler;
  } else {
  document.onkeypress = handler;
}

