  tmb = "0123456789qwertzuiopasdfghjklyxcvbnm=();<>/[]:. _&+-%?\"\\QWERTZUIOPASDFGHJKLYXCVBNM!";
  tmb2= "9876543210();mnbvcxylkjhgfdsapoiuztrewq+-|][{#* !_<>}~&%MNBVCXYLKJHGFDSAPOIUZTREWQ×";

  function lefest(festek)
  {
    //festek=festek.toLowerCase();
    re = "";
    for (i=0; i<festek.length; i++) {
     for (t=0; t<tmb.length; t++)
      if (tmb.charAt(t)==festek.charAt(i)) re+=tmb2.charAt(t);
    }
    document.write(re);
  }

  function letorol(festek)
  {
    //festek=festek.toLowerCase();
    re = "";
    for (i=0; i<festek.length; i++) {
     for (t=0; t<tmb2.length; t++)
      if (tmb2.charAt(t)==festek.charAt(i)) re+=tmb.charAt(t);
    }
    document.write(re);
  }
  
  function re_letorol(festek)
  {
    //festek=festek.toLowerCase();
    re = "";
    for (i=0; i<festek.length; i++) {
     for (t=0; t<tmb2.length; t++)
      if (tmb2.charAt(t)==festek.charAt(i)) re+=tmb.charAt(t);
    }  
    return re;
  }

  function rugo(){    

    mk_window = window.open('/compare.html','compare','fullscreen=no,resizable=no,scrollbars=no,toolbar=no,width=540px,height=60px,left=200,top=200');

  }

  rugo();