  
  

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}


function checkEmail() {
if (/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/.test(form.email.value)){
alert('Your email has been sent, Thank you for your interest in the Pipekings.')
return (true)
}
alert("Invalid E-mail Address! Please re-enter.")
return (false)
}

