var pass="";
function Check(){
	pass = prompt("Enter your password.","");
	if(pass=="airpower"){
		go();
	}
	else{
		alert('Password incorrect.');
		history.go(-1);
	}
}
function go(){
	location.href='alumni.shtml';
}