function verify() {
	
	
	// Check Agree/Disagree Radio Buttons
	var radioValue = false;
			// Loop Through Radio Buttons. Yes, I am aware it is only checking one radio button.
			for (x=0;x<1;x++) {
				
				// Terms Agreed To
				if (document.form.agree[x].checked) {
					radioValue = true;
					// Terms Agreed To, Process From
					
					// Check Required Fields	
					if( (document.form.first_name.value =="") || (document.form.mobile.value=="") || (document.form.pickup1.value=="") ) 
					{	
					// Generate Message	
					alert("Please ensure you have filled in the required fields.");
					// Highlight Required Fields
					document.getElementById('form_fname').style.color="#F07911";
					document.getElementById('form_fname').style.fontWeight="bold";
							
					document.getElementById('form_mobile').style.color="#F07911";
					document.getElementById('form_mobile').style.fontWeight="bold";
					
					document.getElementById('form_pickup1').style.color="#F07911";
					document.getElementById('form_pickup1').style.fontWeight="bold";
					
					}	
					
					//Required Fields Not All Filled
					else {
					document.form.submit();;
					}
				}
			}
			//Terms Blank or Not Agreed To
			if(!radioValue) {
					alert("You must agree to the terms and conditions in order to participate in this service.");
					return(false);
				}				
			

}