function validateConfirmation(message) {
	checkboxConfirmation = document.getElementById('CONFIRMATION_REQUIRED');
	if (checkboxConfirmation.checked) {
		return true;
	}
	else {
		elm = returnObjectById("CONFIRMATION_REQUIRED");
		alert(message);		
		elm.focus();
	}
	return false;
}

function checkState(message) {
	var selState = document.getElementById("CUSTOMERSTATE");
	if (selState.options[selState.selectedIndex].value === "ou") {
		elm = returnObjectById("CUSTOMERSTATE");
		alert(message);
		elm.focus();
		return false;
	}

	return true;
}