function CheckOppsForm(){
	var theForm = document.opps;
	if(theForm.myName.value == ""){
		alert("Enter your Name.");
		theForm.myName.focus();
		return false;
	}
	if(theForm.myAddress.value == ""){
		alert("Enter your Address.");
		theForm.myAddress.focus();
		return false;
	}
	if(theForm.myCity.value == ""){
		alert("Enter your City.");
		theForm.myCity.focus();
		return false;
	}
	if(theForm.myState.value == ""){
		alert("Enter your State.");
		theForm.myState.focus();
		return false;
	}
	if(theForm.myZipcode.value == ""){
		alert("Enter your Zipcode.");
		theForm.myZipcode.focus();
		return false;
	}
		if(theForm.myPhone.value == ""){
		alert("Enter your Phone");
		theForm.myPhone.focus();
		return false;
	}
	if(theForm.myPhone.value.length < 10){
		alert("Enter a valid Phone");
		theForm.myPhone.focus();
		return false;
	}
	if(theForm.myEmail.value == ""){
		alert("Enter your Email.");
		theForm.myEmail.focus();
		return false;
	}
	var emailExp = /^[\w\-\.\+]+\@[a-zA-Z0-9\.\-]+\.[a-zA-z0-9]{2,4}$/;
	if(!theForm.myEmail.value.match(emailExp)){
		alert("Enter a valid Email.");
		theForm.myEmail.focus();
		return false;
	}
	if(theForm.availability.value == ""){
		alert("Enter your availability");
		theForm.availability.focus();
		return false;
	}
	if(theForm.starting.value == ""){
		alert("Enter your starting date");
		theForm.starting.focus();
		return false;	
	}
	if(theForm.employer.value == ""){
		alert("Enter employer");
		theForm.employer.focus();
		return false;
	}
	if(theForm.dateOfEmployment.value == ""){
		alert("Enter employment period");
		theForm.dateOfEmployment.focus();
		return false;
	}
	if(theForm.address.value == ""){
		alert("Enter employer's address");
		theForm.address.focus();
		return false;
	}
	if(theForm.address.value == ""){
		alert("Enter employer's address");
		theForm.address.focus();
		return false;
	}
		if(theForm.phone.value == ""){
		alert("Enter employer's Phone");
		theForm.phone.focus();
		return false;
	}
	if(theForm.phone.value.length < 10){
		alert("Enter a valid Phone");
		theForm.phone.focus();
		return false;
	}
	if(theForm.supervisor.value == ""){
		alert("Enter supervisor's name");
		theForm.supervisor.focus();
		return false
	}
	if(theForm.canWeContactSupervisor.value == ""){
		alert("Enter Yes or No");
		theForm.canWeContactSupervisor.focus();
		return false
	}
	if(theForm.reasonForLeaving.value == ""){
		alert("Enter reason for leaving");
		theForm.reasonForLeaving.focus();
	}	
	if(theForm.Ref1.value == ""){
		alert("Enter your 1st reference.");
		theForm.Ref1.focus();
		return false;
	}
	if(theForm.Ref2.value == ""){
		alert("Enter your 2nd reference.");
		theForm.Ref2.focus();
		return false;
	}
	if(theForm.Ref3.value == ""){
		alert("Enter your 3rd reference.");
		theForm.Ref3.focus();
		return false;	
	}
	if(theForm.hours.value == ""){
		alert("Enter how many hours a week.");
		theForm.hours.focus();
		return false;
	}
	if(theForm.Sunday.value == ""){
		alert("Enter Start & end times.");
		theForm.Sunday.focus();
		return false;
	}
	if(theForm.Monday.value == ""){
		alert("Enter Start & end times.");
		theForm.Monday.focus();
		return false;
    }
	if(theForm.Tuesday.value == ""){
		alert("Enter Start & end times.");
		theForm.Tuesday.focus();
		return false;
	}
	if(theForm.Wednesday.value == ""){
		alert("Enter Start & end times.");
		theForm.Wednesday.focus();
		return false;
    }
	if(theForm.Thursday.value == ""){
		alert("Enter Start & end times.");
		theForm.Thursday.focus();
		return false;
    }
	if(theForm.Friday.value == ""){
		alert("Enter Start & end times.");
		theForm.Friday.focus();
		return false;
    }
	if(theForm.Saturday.value == ""){
		alert("Enter Start & end times.");
		theForm.Saturday.focus();
		return false;
    } 
    if(theForm.store.value == ""){
		alert("Enter a Store Number.");
		theForm.store.focus();
		return false;
	}
	/*var numericExpression = /^[0-9]+$/;
	if((theForm.store.value.length < 4) || (!theForm.store.value.match(numericExpression))){
		alert("Enter a valid Store Number.");
		theForm.store.focus();
		return false;
	}*/
	return true;
}


