function ChangeMyPassword()
  {
    choix = confirm("Sure you want to change your password?\nThis will log you out!");
    if (choix == true)
      {
      document.forms.form_new_password.submit();
      }
  }
function ResetCountry()
  {
    choix = confirm("Sure you want to reset your country?");
    if (choix == true)
      {
      document.forms.form_reset_country.submit();
      }
  }