function register(e){
	if (!e) e = window.event;
	if ((String.fromCharCode(e['keyCode'])=='S')&&(e['altKey'])) { window.location="scout.php"; }
	if ((String.fromCharCode(e['keyCode'])=='N')&&(e['altKey'])) { window.location="board.php?brd=nat"; }
	if ((String.fromCharCode(e['keyCode'])=='C')&&(e['altKey'])) { window.location="board.php"; }
	if ((String.fromCharCode(e['keyCode'])=='D')&&(e['altKey'])) { window.location="discipline.php"; }
	if ((String.fromCharCode(e['keyCode'])=='L')&&(e['altKey'])) { window.location="drug_lab.php"; }
	if ((String.fromCharCode(e['keyCode'])=='A')&&(e['altKey'])) { window.location="attack.php"; }
	if ((String.fromCharCode(e['keyCode'])=='P')&&(e['altKey'])) { window.location="store.php?go=pharmacy"; }
	if ((String.fromCharCode(e['keyCode'])=='G')&&(e['altKey'])) { window.location="store.php?go=gunmart"; }
	if ((String.fromCharCode(e['keyCode'])=='T')&&(e['altKey'])) { window.location="store.php?go=thedealer"; }
	if ((String.fromCharCode(e['keyCode'])=='Y')&&(e['altKey'])) { window.location="store.php?go=caryard"; }
	if ((String.fromCharCode(e['keyCode'])=='H')&&(e['altKey'])) { window.location="home.php"; }
	if ((String.fromCharCode(e['keyCode'])=='R')&&(e['altKey'])) { window.location="ranks.php"; }
	if ((String.fromCharCode(e['keyCode'])=='M')&&(e['altKey'])) { window.location="comms.php?box=messages"; }
	if ((String.fromCharCode(e['keyCode'])=='V')&&(e['altKey'])) { window.location="travel.php"; }
}
function emoticon(text) {
	text = ' ' + text + ' ';
	document.getElementById("msg").value  += text;
	document.getElementById("msg").focus();
}
function MM_jumpMenu(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}