// JavaScript Document

function validateContactForm() {
	
	var theForm = document.getElementById("partnerForm");
	
	var valid = true;
	
	
	if (theForm.yourname.value == "") {
			
			alert ("Please enter your name");
			
			valid = false;
			
			theForm.first_name.focus();
			
		
	} else if (theForm.youremail.value == "") {
		
			alert ("Please enter your email address");
			
			valid = false;
			
			theForm.email.focus();
			
		
	} 
	
	return(valid);	
		
}
