x
 
<html>
<head>
<script type="text/javascript">
function setAccessKeys()
  {
  document.getElementById('fname').accessKey="n"
  document.getElementById('pwd').accessKey="p"
  }
</script>
</head>
<body onload="setAccessKeys()">
<form>
Name: <input id="fname" type="text" />
<br />
Password: <input id="pwd" type="password" />
</form>
</body>
</html>