    function processForm()
	{
	  if(document.getElementById('required1').value == '')
	  {
	    alert('Please fill in the "Name" field.');
	    return(false);
	  }
	  if(document.getElementById('required2').value == '')
	  {
	    alert('Please fill in the "E-mail" field.');
	    return(false);
	  }
	  if(document.getElementById('required3').selectedIndex == 0)
	  {
	    alert('Please select an entry from "How did you hear about us".');
	    return(false);
	  }
	  if(document.getElementById('required8').checked && (document.getElementById('required4').value == '' || document.getElementById('required5').value == '' || document.getElementById('required6').value == '' || document.getElementById('required7').value == ''))
	  {
	    alert('Please fill out the address, city, state, and zip fields to receive a printed information booklet and price list');
	    return(false);
	  }
	  return(true);
	}