<!--

  function CheckContact( )
  {
    if ( document.contact.strEmail.value == '') {
		alert("You must enter a valid email address.");
		return false;
	}

	if ( !(/^(([a-zA-Z0-9_\.\-]{2,})+)*@(([a-zA-Z0-9_\.\-]{2,})+)*(\.\w{2,3})+$/.test(document.contact.strEmail.value)) ){
	
		alert("You must enter a valid email address.");
		return false;
	}


    if( document.contact.strFname.value == "" )
    {
      alert("You must enter your first name.");     
      return false;
    }

    if( document.contact.strLname.value == "" )
    {
      alert("You must enter your last name.");     
      return false;
    }

    if( document.contact.strAddress.value == "" )
    {
      alert("You must enter your address.");     
      return false;
    }

    if( document.contact.strCity.value == "" )
    {
      alert("You must enter your city.");     
      return false;
    }

    if( document.contact.strState.value == 0 )
    {
      alert("You must enter your state/province.");     
      return false;
    }

    if( document.contact.strZip.value == "" )
    {
      alert("You must enter your Zip code.");     
      return false;
    }

    if( document.contact.strPhone.value == "" )
    {
      alert("You must enter your phone number.");     
      return false;
    }

    if( document.contact.strTaxID.value == 0 )
    {
      alert("You must enter your Tax ID Number.");     
      return false;
    }

    if( document.contact.strBizType.value == 0 )
    {
      alert("You must indicate your type of business.");     
      return false;
    }

    return true;
  }




// -->