function Keyph()
{
  if(event.keyCode==37)location.href="JavaScript:history.back()";
  if(event.keyCode==39)location.href="JavaScript:history.forward()";
}
window.document.onkeydown = Keyph;