function refreshPage(){
	window.location.reload(true);
}

function openWin(URL){
	aWindow = window.open(URL,"thewindow","toolbar=0,location=0,directories=0,status=1,menubar=0,resizable=0,width=443,height=365");
}


function checkEmailAddress(theData) {

// the following expression must be all on one line...
var goodEmail = theData.match(/\b(^(\S+@).+((\.com)|(\.net)|(\.edu)|(\.mil)|(\.gov)|(\.org)|(\..{2,2}))$)\b/gi);
  if (goodEmail) {
    alert("Thank you for subscribing!");
	
  } else {
  	alert("Please enter a valid email address.");
  }
}
