
<!-- Original:  Wayne Nolting (w.nolting@home.com) -->

<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->

<!-- Begin
function verify_newsletter_age() {
var themessage = "You must be over 21 to sign up for our newsletter";
if (document.ccoptin.over21.checked != 1) {
themessage = themessage + "!";
}

//alert if fields are empty and cancel form submit
if (themessage == "You must be over 21 to sign up for our newsletter") {
document.form.submit();
}
else {
alert(themessage);
return false;
   }
}
//  End -->

