// constants
var STR_STANDARD_ERROR			= "There were some errors found while processing this form.\n\n";

// variables
var strErrorsFound				= "";
var boolErrorFound				= false;

function setError(strErrorMessage) {
	boolErrorFound				= true;
	strErrorsFound				+=	strErrorMessage;	
}

function setArea(strAreaKey) {
	$("#strAreaKey").val(strAreaKey);
}

function setAreaSubmit(strAreaKey) {
	$("#strAreaKey").val(strAreaKey);
	$("#frmResults").submit();
}
