	<!--

	// (C) 2000 www.CodeLifter.com
	// http://www.codelifter.com
	// Free for all users, but leave in this  header

	var good;
	function checkEmailAddress(field) {

		// Note: The next expression must be all on one line...
		//       allow no spaces, linefeeds, or carriage returns!
		var goodEmail = field.value.match(/\b(^(\S+@).+((\.com)|(\.net)|(\.edu)|(\.mil)|(\.gov)|(\.org)|(\..{2,2}))$)\b/gi);

		if (goodEmail){
		   return true
		} else {
		   field.focus()
		   field.select()
		   return false
	   }
	}

	function validateform(){
		msg = '';
		if (document.contact.name.value == '') msg = "Please provide a name\n";
		if (document.contact.email.value == ''){
			msg += "Please provide an email address";
		}else{
			if (!checkEmailAddress(document.contact.email)){
				msg += 'Please enter a valid e-mail address.';
			}
		}
		if (msg == ''){
			return true;
		}else{
			alert(msg);
			return false;
		}
	}
	-->
