<!--
/*
	functions.js
	
	Here we store the JavaScript we'll use throughout the site.
*/

function chartWin(URL, width, height) {
	// open a new window
	var popWin = window.open(URL, "popWin", "width=" + width + ",height=" + height + ",menu=0,scrollbars=0");
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
	x = window.open(theURL,winName,features);
	x.focus();
}

function check_login() {
	// make sure they provided a username and password
	if (document.login.Username.value == "" || document.login.Password.value == "") {
		alert("Please provide a username and password to login.");
		return false;
	}
	return true;
}
//-->
