function md5pwd () {
	pwd = document.getElementById('auth_loginpwd');
	document.getElementById('auth_password_md5').value = MD5(pwd.value);
	pwd.value = '';
}
