/////////////////////////////
//
//Event sign up functions.
//
	function checkFaqForm(theForm) {
		if (theForm.email.value.indexOf("@") < 1 || theForm.email.value.indexOf(".") < 1) {
			alert ("Please supply a valid email address.");
			theForm.email.focus();
			return (false);
		}
	}