function do_NewsletterSignup()
  {
    var s = document.all.small_email.value;
    var pos = s.indexOf("@");
    if (pos == -1 || pos == 0 || pos == s.length - 1)
      {
        alert("Please enter a valid email address");
	return false;
      }
      return true;
    }

  function do_DisplayPrivacyPolicy ()
  {
    privacywindow = window.open("../smallnewsletterprivacystmt.shtml", "","width=450px,height=500px")
    privacywindow.moveTo(130,100)
  }


<!-- Original:  Wayne Nolting (w.nolting@home.com) -->

<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->

function verify() {
var themessage = "You are required to complete the following fields: ";
if (document.forms.contact.firstname.value=="") {
themessage = themessage + "\n*First Name";
}
if (document.forms.contact.lastname.value=="") {
themessage = themessage + "\n*Last Name";
}
// if (document.forms.contact.email.value=="") {
// themessage = themessage + "\n*Email";
// }
var s = document.forms.contact.email.value;
var pos = s.indexOf("@");
    if (pos == -1 || pos == 0 || pos == s.length - 1)
      {
        themessage = themessage + "\n*A valid email address";
      }
//alert if fields are empty and cancel form submit
if (themessage == "You are required to complete the following fields: ") {
document.forms.contact.submit();
}
else {
alert(themessage);
return false;
   }
}

