
var baseURL = "http://thosearentmuskets.com";


function formVal(){
email=document.addEntry.email.value;
reMail = new RegExp("^(.+)@(.+)\\.(.+)$");
var match = reMail.test(email);
  if(!match){// replace with reg exp here
    alert("Umm... type a better email, please.")
    return false;
  }
  else{ return true;}
}//end formVal()

function ext_win(tempname)
{
	url = baseURL + "/swaim/" + (tempname) + ".html";
	var windowSettings = 'width=1000,height=650,left=20,top=20,toolbar=no,location=no,scrollbars=no,resizable=yes,status=no';
	window.open(url,"",windowSettings);
}