
function initPage() {
//	xAddEventListener("cmdGo", "click", validate_form, true);
}

function validate_form() {
	if (xGetElementById("email").value != xGetElementById("confirm_email").value){
		alert ("Emails don't match!");
		return false;
	}

	if (xGetElementById("pw").value != xGetElementById("confirm_pw").value){
		alert ("Passwords don't match!");
		return false;
	}

	return true;
}
