<!--Keyboard navigation script
<!-- Begin
var key = new Array();  // Define the keys below
key['1'] = "../jan10/index.htm";
key['2'] = "../dec09/index.htm";
key['3'] = "nov09/index.htm";
key['4'] = "oct09/index.htm";
key['5'] = "sept09/index.htm";
key['6'] = "aug09/index.htm";
key['7'] = "archive2.htm";
key['0'] = "index.htm";
key['p'] = "archive1.htm"; 
function getKey(keyStroke) {
isNetscape=(!document.all);
eventChooser = (isNetscape) ? keyStroke.which : event.keyCode;
which = String.fromCharCode(eventChooser).toLowerCase();
for (var i in key) if (which == i) window.location = key[i];
}
document.onkeypress = getKey;
//  End -->

function MM_callJS(jsStr) { //v2.0
  return eval(jsStr)
}
//-->