//Check to make sure that the contact info has been intered.  If so, submit the form else request the info.
function checkContact(){
	if(customRequestForm.HowToContact.value == ""){
		alert('Please enter your contact information and resubmit your request.');
	}
	else{
		customRequestForm.submit();
	}
}
