function checkFields() { 
	if (document.getElementById('Email').value != document.getElementById('CEmail').value) {
		alert("Email and Confirm Email fields must match to continue.");
		return false;
	}
	return true;
}