<!--

	function checkForm(){
			formRef = document.contactForm;

			if ( formRef.lastName.value.length < 2 ){
				alert('Please enter your name in the "Name" field.');
				formRef.lastName.focus();
				return;
			}
			if ( formRef.fromemail.value.length < 2 ){
				alert('Please enter an email address in the "Email Address " field.');
				formRef.fromemail.focus();
				return;
			}
			formRef.submit();
		}

//-->