function check()
{
frm=document.forms.contactForm;

	if(frm.firstname.value == "")
	{
		alert("Please enter your first name.");
		return false;
	}
	if(frm.lastname.value == "")
	{
		alert("Please enter your last name.");
		return false;
	}
	if(frm.contact_email.value == "")
	{
		alert("Please enter your email address.");
		return false;
	}
	if(frm.contact_country.selectedIndex == 0)
	{
		alert("Please select your country.");
		return false;
	}

	if(document.getElementById('contact_country').selectedIndex == 1)
	{
		if(frm.mystate.selectedIndex == 0)
		{
			alert("Please select your state.");
			return false;
		}
	}
	if(document.getElementById('contact_country').selectedIndex == 2)
	{
		if(frm.companyprovince.selectedIndex == 0)
		{
			alert("Please select your province.");
			return false;
		}
	}
	if(frm.contact_workphone.value == "")
	{
		var answer = prompt("We may wish to contact you by phone regarding this request. You will not be contacted for any other reason.","Please enter your phone number here");
		if(answer != "Please enter your phone number here")
		{
		   frm.contact_workphone.value = answer;
		}
	}
	else
	{
	return true;
	}
}

function toggleState()
{
frm=document.forms.contactForm;
thisField=document.getElementById('contact_country');
thisstateforeign=document.getElementById('stateforeign');
thisstateusa=document.getElementById('stateusa');
thisstatecanada=document.getElementById('statecanada');
  if(thisField.options[thisField.selectedIndex].value == "UNITED STATES")
  {
	
	thisstateforeign.style.display = "none";
	thisstatecanada.style.display = "none";
	thisstateusa.style.display = "";
  }
  else if(thisField.options[thisField.selectedIndex].value == "CANADA")
  {
	thisstatecanada.style.display = "";
	thisstateforeign.style.display = "none";
	thisstateusa.style.display = "none";
  }
  else
  {
	thisstateusa.style.display = "none";
	thisstatecanada.style.display = "none";
	thisstateforeign.style.display = "";
  }
} 