function verify() {
			
			var emsg = "";
			
			if (!checkemail(document.inquiry.email.value)){				
				emsg=(emsg+"\nEmail Address");							
			}
			
			if (document.inquiry.msg.value<1){
				emsg=(emsg+"\nMessage");
			}						
			
			if(emsg.length!=0) {
				alert("So that we may serve you better, please provide the following additional pieces of information:\n" + emsg);
				return (false);
				}
			else
				return (true);

		}
		
		function checkemail(emailad) {

			var exclude=/[^@\-\.\w]|^[_@\.\-]|[\._\-]{2}|[@\.]{2}|(@)[^@]*\1/;
			var check=/@[\w\-]+\./;
			var checkend=/\.[a-zA-Z]{2,3}$/;
			var emailOK = true;
			// var sbst=ann.dj;

				if(((emailad.search(exclude) != -1)||(emailad.search(check)) == -1)||(emailad.search(checkend) == -1)){
					emailOK=false;
				}				
			return (emailOK);
		}

		function EMAIL_onchange(form) {
			var badem;
			badem=form.email.value;

			if (badem.toLowerCase().indexOf("ann.dj") >= 0)
				form.email.value="";

		}		