// EgradeStudentLogin
function EgradeStudentLogin()
{
	hLoginWindow = window.open("StudentLogin.HTML", "", "height=300,width=400");

	//	Put the focus on the login window
	hLoginWindow.focus();
}

// EmailProfWin
function EmailProfWin(szQueryString)
{
	//	Let's open the email window
    hLoginWindow = window.open("EmailProf.asp?" + szQueryString, "", "scrollbars");

	//	Put the focus on the email window
	hLoginWindow.focus();
}
