function CheckContactInfo()
{
  with(document.SendContactForm)
	{
	  if(ContactName.value == "") 
		{
      alert("Missing contact name.\n\nPlease enter your name.");
      return false;
    }

	  if(ContactCompany.value == "") 
		{
      alert("Missing Company name.\n\nPlease enter the company you represent.");
      return false;
    }

	  if(ContactTel.value == "" && ContactEmail.value == "") 
		{
      alert("Missing Telephone Number and Email address.\n\nPlease enter either the Telephon Number or Email Address for us to contact you.");
      return false;
    }
	
	  if(ContactDescription.value == "") 
		{
      alert("Missing Description.\n\nPlease enter your inquiry, comment or feedback.");
      return false;
    }
  }
	
	return true;
  
}

function CheckFriendInfo()
{
  with(document.SendFriendForm)
	{
	  if(YourNameN.value == "") 
		{
      alert("Missing name.\n\nPlease enter your name.");
      return false;
    }

	  if(YourEmailN.value == "") 
		{
      alert("Missing email.\n\nPlease enter your email address.");
      return false;
    }

	  if(FriendEmailN.value == "") 
		{
      alert("Missing email.\n\nPlease enter your friend(s) email address.");
      return false;
    }
	
	  if(ContactDescription.value == "") 
		{
      alert("Missing Description.\n\nPlease enter a message for your friend(s).");
      return false;
    }
  }
	
	return true;
  
}


