function password(){
	var password = prompt("Please note that articles may be used for fair-use purposes only, and all articles are copyrighted by the respective publishers.  Please type 'OK' in the box below to indicate that you have read this notice.", "");
	lowerCasePassword= password.toLowerCase();
	if (lowerCasePassword == "ok"){
		window.open("http://www1.union.edu/bizerg/pubs/", "pubs", "", "");
	}
	else{
		alert("Sorry, you did not type the correct input and cannot access the publications page.  If you would still like to access the page, click on the 'Publications' link in the left navigation bar and type the correct input.");
	}
}