function openWindow(url, name, widgets) {
	host = location.hostname;
	popupWin = window.open ( url, name, widgets);
	popupWin.opener.top.name = "opener";
	popupWin.focus();
}

function PopUpStudent() {
	openWindow(	"https://support.law.cornell.edu/students/students/studentLogin.cfm?action=LibrarySites",
				"studentPopUp",
				"scrollbars = yes, toolbar = no, width = 500, height = 400, location = no, directories = no, status = no, menubar = no, resizable = auto");

}

function PopUpFaculty() {
	openWindow(	"accessInfo.aspx",
				"studentPopUp",
				"scrollbars = yes, toolbar = no, width = 500, height = 400, location = no, directories = no, status = no, menubar = no, resizable = auto");

}
