
			function submitForm() {
				if(document.theForm.yourname.value.length < 3) {
					alert("Please enter at least your first name.");
					document.theForm.yourname.focus();
					return;
				}
				if(document.theForm.email.value.length < 6) {
					alert("Please enter your E-mail Address.");
					document.theForm.email.focus();
					return;
				}
				else if(document.theForm.comments.value.length < 6) {
					alert("Please enter your Comments/Questions.");
					document.theForm.comments.focus();
					return;
				}
				document.theForm.submit();
			}
