// JavaScript Document
function validateForm() {
	strErrorsFound				= "";
	boolErrorFound				= false;

	if ($("#strAreaKey").val().length == 0) 
		setError(" - Please select the area that you want to search in by using the Flash map on the left hand side of the screen.\n");
		
	if (boolErrorFound) {
		alert(STR_STANDARD_ERROR + strErrorsFound);
		return false;
	} else {
		return true;
	}
}