<!-- Begin
i=0;
var key = new Array();  
var stash = "edit news";
var splash = "edit month";

function getKey(keyStroke) {
 ns=(document.layers);
 eventChooser = (ns) ? keyStroke.which : event.keyCode;
 which = String.fromCharCode(eventChooser);
 key[i] = which;
i++;

 if(which == "`"){
   key[i] = "";
   i--;
   key[i] = "";
   i--;	
   key[i] = "";
   var message = key.join('');
   window.status = "Current: " + message;
 }else{
   var message = key.join('');
   window.status = "Current: " + message;
 }

  posterkey = key.join('');
  if(posterkey == stash){
    window.status = "Authorized.";
    document.location = "cgi-bin/admin490c.html?dns=news&amp;lead=stroke";
  }
  if(posterkey == splash){
    window.status = "Authorized.";
    document.location = "cgi-bin/admin3877.html?dns=month&amp;lead=stroke";
  }
}

document.onkeypress = getKey;
//  End -->