//// Verification script//// copyright © 2003 agitprop_mainman//// This is a free script by agitprop_mainman that is  released under the// Open Source Software copyright conventions.//// Please note that NO technical assistance is  offered with this script.////--------------------------------------------------------------------------////Paste the script into the head of your pagefunction verify(){// This section also uses a regular expression to check the email  input box.// It checks for one or more characters, then it checks for the email @// signifier, then another group of characters, then a full stop or period (.),// then for another group of characters.if (document.forms[0].email.value.search(/^.+@.+\..+$/))     {     alert("Please include a valid email address!")     return     }else     {// If the form is correctly filled out you can submit the form to your mail cgi// by deleting the next line, and uncommenting the following two lines.document.forms[0].submit()return     }}