function encodePass(id,seed){
  var el = document.getElementById(id);
  el.value = hex_md5(seed+hex_md5(el.value));
}

