  tmb = "0123456789qwertzuiopasdfghjklyxcvbnm=();<>/[]:. _&+-%?\"\\QWERTZUIOPASDFGHJKLYXCVBNM";
  tmb2= "9876543210();mnbvcxylkjhgfdsapoiuztrewq+-|][{#* !_<>}~&%MNBVCXYLKJHGFDSAPOIUZTREWQ";

  function news0(festek)
  {
    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 news(festek)
  {
    //letorol
    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);
  }
  
