function encodepw() {
	var pw = document.getElementById("loginPass").value;
	document.getElementById("encodedpw").value = MD5(pw);
	return true;
}


