// JavaScript Document
				function validate(theForm)
				{
				  if (theForm.campus.value == "")
				  {
				    alert("Please choose a campus location.");
				    theForm.campus.focus();
				    return (false);
				  }
				
				  if (theForm.program.value == "")
				  {
				    alert("Please choose a program.");
				    theForm.program.focus();
				    return (false);
				  }
				  
				  if (theForm.first.value == "First Name:")
				  {
				    alert("Please enter your First Name.");
				    theForm.first.focus();
				    return (false);
				  }
				  
				  if (theForm.last.value == "Last Name:")
				  {
				    alert("Please enter your Last Name.");
				    theForm.last.focus();
				    return (false);
				  }
				  
				  if (theForm.email.value == "Email Address:")
				  {
				    alert("Please enter your Email.");
				    theForm.email.focus();
				    return (false);
				  }
				  
				  if (theForm.phone1.value == "Phone Number:")
				  {
				    alert("Please enter your Phone Number.");
				    theForm.phone1.focus();
				    return (false);
				  }
				  
				  if (theForm.contact_time.value == "")
				  {
				    alert("Please select a convienent contact time.");
				    theForm.contact_time.focus();
				    return (false);
				  }
				  
				  if (theForm.address1.value == "Address:")
				  {
				    alert("Please enter your Address.");
				    theForm.address1.focus();
				    return (false);
				  }
				  
				  if (theForm.city.value == "City:")
				  {
				    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 == "Zip:")
				  {
				    alert("Please enter your Zip.");
				    theForm.zip.focus();
				    return (false);
				  }
				 
				  if (theForm.grad_year.value == "")
				  {
				    alert("Please enter your Graduation Year.");
				    theForm.grad_year.focus();
				    return (false);
				  }
				  
				  if (theForm.preveduc.value == "")
				  {
				    alert("Please enter your Education Level.");
				    theForm.preveduc.focus();
				    return (false);
				  }
				  
				 
				  
				  if (theForm.start_time.value == "")
				  {
				    alert("Please select a class start time.");
				    theForm.start_time.focus();
				    return (false);
				  }
				  
				   if (theForm.title.value == "")
				  {
				    alert("Please enter a title.");
				    theForm.title.focus();
				    return (false);
				  }
				  
				   if (theForm.companyname.value == "")
				  {
				    alert("Please enter a Company Name.");
				    theForm.companyname.focus();
				    return (false);
				  }
				  
				  
				  document.form1.submit();
				  
				  }
				  
