function getaction(theForm)
{
	var theChoice;
	var theException;
	var theProv;
	
	theEmail=theForm.email.value;
	theConfirmEmail=theForm.confirmemail.value;

	if (theEmail != theConfirmEmail ) {
		alert("Email addresses do not match!");
	        theForm.confirmemail.focus();
	        return false;
	}

	theChoice=theForm.prov[theForm.prov.selectedIndex].value;
	theException=theForm.problem_with_site.checked;

  if(theChoice=="") {	
	alert("You must choose a province.");			
	theForm.prov.focus();
	return false;
	}

	
}
