// JavaScript Document
function MM_reloadPage(init) {  //reloads the window if Nav4 resized
  if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
    document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
  else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
}
MM_reloadPage(true);

var newWin = null;
function emblemPopUp(epuURL) {
	if (newWin != null && !newWin.closed)
		newWin.close();
	newWin = window.open(epuURL, 'newWin', 'width=300,height=245');
	newWin.focus
}

re = /^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/
function EmailVal(myForm) {
	if (re.test(myForm.EmailAddress.value)) {
		return true
	}
	alert("Invalid email address. Please try again.")
	myForm.EmailAddress.focus()
	myForm.EmailAddress.select()
	return false
}

//-->
