<!-- Start Hiding
//Script by RDT jr. July, 2000
function check() {
var alert="";
if (document.mailinglist.Email.value.length < 1 || document.mailinglist.Email.value == "<Email Address>") {
var alert="Please enter your Email Address. You may be\nassured that we will not share this information.";
window.alert(alert);
return false;
 }
else if (document.mailinglist.Email.value.indexOf('@', 1) == -1 || document.mailinglist.Email.value.indexOf('.', 3) == -1) {
var alert="The Email Address you entered was not\nvalid. Please enter a valid Address.";
window.alert(alert);
return false;   
 }
else {
window.alert("Thank you for your interest!\nYour address has been added to our list. You\nwill be notified when the next bulletin is posted.");
return true;          
 }
}          
// Stop Hiding-->     
