// JavaScript functions

		function BothPasswordsIdenticalCaseInsensitive() {
		var one = document.regfrm.Password.value.toLowerCase();
		var another = document.regfrm.PasswordConfirm.value.toLowerCase();
		if(one == another) { return true; }
		alert("Oops, both Passwords must be identical.");
		return false;
		}







