// begin form validation

	function submitIt(){
	
	// fill in Name, E-mail and Details
	
	var input = document.getElementById('contact_name');
	if (input && !input.value) {
		alert("Please provide your name.");
		input.focus();
		return false;
	}
	
	var input = document.getElementById('contact_info');
	if (input && !input.value) {
		alert("Please provide your contact information.");
		input.focus();
		return false;
	}
	
	var input = document.getElementById('details');
	if (input && !input.value) {
		alert("Please provide brief details as to your request.");
		input.focus();
		return false;
	}
	
	document.getElementById('contactform').submit();

}
// end form validation
