function control ( evt ) {
	key = evt.keyCode;
	letter = String.fromCharCode(evt.keyCode);
	if ( key == 86 ) {
		window.location="./videos.php";
	} else if ( key == 67 ) {
		window.location="./fh_calendar.php";
	} else if ( key == 72 ) {
		window.location="./index.php";
	} else if ( letter == "R" ) {
		window.location="./info.php?resource_ID=resources";
	} else if ( letter == "L" ) {
		window.location = "./info.php?resource_ID=1";
	} else if ( letter == "P" ) {
		window.location = "./pg.php";
	} else if ( letter == "W" ) {
		window.location = "./info.php?resource_ID=3";
	} else if ( letter == "M" ) {
		window.open('./run_swf_file.php' , 'newwin' , 'left=40 , top=20 , width=690 , height=550 , resizable=yes, scrollbars=yes , location=no' ); return false;
	}
	var toggle = document.getElementById('adm_box');
	if ( key == 65 ) {
		if ( toggle.style.display == "none" ) {
			document.getElementById('adm_box').style.display = "block";	
		} else {
			document.getElementById('adm_box').style.display = "none";	
		}
	}
	
	//alert ( key );
}