
function replacePasswordField(theForm) {
	theForm.fakepwd.style.display = "none";
	theForm.password.style.display = "";
	theForm.password.focus();
}
