// JavaScript Document

function PasswordConfirm() { // Checks To See If Passwords Entered At Registration Match
	var x = document.getElementById("password1").value;
	var y = document.getElementById("password2").value;
	
	//alert(x);
	//alert(y);
	if(x != y) {
		alert("Password Do Not Match");
		document.getElementById("password2").focus();
		return false;
	} else {
		return true;
	}
}
