<!--
function checkForm(){

	var iCheck = /^\d+$/;
	/*
	var userPhone = document.frmMain.phone;
	if ( userPhone.value.length > 0 ){
		if ( !iCheck.test(userPhone.value) ){
			alert('Please use only numbers in the telephone number field. \n Please do not use hyphens, dots or spaces to seperate numbers.');
			userPhone.focus();
			return;
		}
	}

	var userFax = document.frmMain.fax;
	if ( userPhone.value.length > 0 ){
		if ( !iCheck.test(userFax.value) ){
			alert('Please use only numbers in the fax number field. \n Please do not use hyphens, dots or spaces to seperate numbers.');
			userFax.focus();
			return;
		}
	}
	*/
	document.frmMain.submit();
}

function checkForm2(){
			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();
		}
-->