function getPwdMd5 ( idLogin, idPass, idMd5, idForm ) {
	pwd = document.getElementById(idPass).value;
	document.getElementById(idPass).value = '';

	buf = hex_md5(pwd);
	document.getElementById(idMd5).value = buf;

	document.getElementById(idForm).submit();
	return true;
}

function ngetPwdMd5 ( idLogin, idPass, idMd5, idForm ) {
	pwd = document.getElementById(idPass).value;
	document.getElementById(idPass).value = '';

	buf = hex_md5(pwd);
	document.getElementById(idMd5).value = buf;

}
