// JavaScript Document
				function validate(theForm)
				{
				  var emailExp = /^[\w\-\.\+]+\@[a-zA-Z0-9\.\-]+\.[a-zA-z0-9]{2,4}$/;
				  	
				  if (theForm.acccampus.value == "" )
				  {
				    alert("Please choose a campus.");
				    return (false);
				  }
				  
				  if (theForm.ACCprogram.value=='- Choose One -')
				  {
				    alert("Please choose a program.");
				    return (false);
				  }
				  
				  if (theForm.preveduc.value == "")
				  {
				    alert("Please choose your previous education.");
				    return (false);
				  }
				  
				  if (theForm.hs_grad_year.value == "")
				  {
				    alert("Please enter your Graduation Year.");
				    return (false);
				  }
				  
				  if (theForm.start_time.value == "")
				  {
				    alert("Please select a class start time.");
				    return (false);
				  }
				  
				  if (theForm.contact.value == "")
				  {
				    alert("Please select a contact time.");
				    return (false);
				  }
				  
				  if (theForm.fname.value == "")
				  {
				    alert("Please enter your First Name.");
				    theForm.fname.focus();
				    return (false);
				  }
				  
				  if (theForm.lname.value == "")
				  {
				    alert("Please enter your Last Name.");
				    theForm.lname.focus();
				    return (false);
				  }
				  
				   if (!theForm.email.value.match(emailExp))
				  {
		           alert("Not a Valid Email!");
		           theForm.email.focus();
		           return false;
	               }
				  
				  if (theForm.phone1.value == "")
				  {
				    alert("Please enter your Cell Phone.");
				    theForm.phone1.focus();
				    return (false);
				  }
				  
				  if (theForm.address1.value == "")
				  {
				    alert("Please enter your Address.");
				    theForm.address1.focus();
				    return (false);
				  }
				  
				  if (theForm.city.value == "")
				  {
				    alert("Please enter your City.");
				    theForm.city.focus();
				    return (false);
				  }
				  
				  if (theForm.state.value == "")
				  {
				    alert("Please enter your State.");
				    theForm.state.focus();
				    return (false);
				  }
				  
				  if (theForm.zip.value == "")
				  {
				    alert("Please enter your Zip.");
				    theForm.zip.focus();
				    return (false);
				  }

				  document.form1.submit();


				  }
				  
