// JavaScript Document
	function validate()

	  {

	  if(document.forms.contactConf.firstname.value.length == 0)

	  {

	    alert("You must enter your first name to continue.  Thank you.");

	    return false;

	  }

	  

	  if(document.forms.contactConf.lastname.value.length == 0)

	  {

	    alert("You must enter your last name to continue.  Thank you.");

	    return false;

	  }

	  

	  if(document.forms.contactConf.company.value.length == 0)

	  {

	    alert("You must enter your company name to continue.  Thank you.");

	    return false;

	  }

	  

	  if(document.forms.contactConf.address.value.length == 0)

	  {

	    alert("You must enter your address to continue.  Thank you.");

	    return false;

	  }	  

	

	  if(document.forms.contactConf.city.value.length == 0)

	  {

	    alert("You must enter your city to continue.  Thank you.");

	    return false;

	  }

	

	  if(document.forms.contactConf.zip.value.length == 0)

	  {

	    alert("You must enter your zip code to continue.  Thank you.");

	    return false;

	  }

	

	  if(document.forms.contactConf.email.value.length == 0)

	  {

	    alert("You must enter your email address to continue.  Thank you.");

	    return false;

	  }

	  

	  if(document.forms.contactConf.phone.value.length == 0)

	  {

	    alert("You must enter your telephone number to continue.  Thank you.");

	    return false;

	  }

	  

	  if(document.forms.contactConf.fax.value.length == 0)

	  {

	    alert("You must enter your fax to continue.  Thank you.");

	    return false;

	  }

	  if(!document.forms.contactConf.custom1.checked){alert("Please read the terms and conditions of agreement and check the box below");
return false; }

	return true;

	  }
