// JavaScript Document
function checkForm(){
	if( document.contact.honeypot.value != "" ){
		alert( "You did not pass Spam bot protection. Please reload this page and resubmit your information. Thank you." );
		return false;
	}
	if( document.contact.firstname.value == "" ){
		alert( "Please fill out your first name." );
		return false;
	}
	if( document.contact.lastname.value == "" ){
		alert( "Please fill out your last name." );
		return false;
	}
	if( document.contact.email.value == "" ){
		alert( "Please fill out your email." );
		return false;
	}
	if( document.contact.phone.value == "" ){
		alert( "Please fill out your phone number." );
		return false;
	}
	if( document.contact.interest.value == "" ){
		alert( "Please let us know if you are more interested in being a distributor or provider in the radio boxes below. If you have any questions concerning these roles, please scroll over the terms for a definition." );
		return false;
	}
		return true;
	
}

