function checkSurvey(){
	if (document.f1.business.selectedIndex==0)
  {
    alert("You have not selected a Business.");
    document.f1.business.focus();
    return (false);
  }
  if (document.f1.company.value == "")
  {
    alert("You have not entered your Company Name.");
    document.f1.company.focus();
    return (false);
  }
  if (document.f1.fulltime.value == "")
  {
    alert("You have not entered the number of Full-Time employees that work for your Company.");
    document.f1.fulltime.focus();
    return (false);
  }
	
	return true;
}

	

