﻿<!--
function stop(kvo){
 var out = "";
msg=kvo.t.value;
k=msg.length;
for (var i=0; i<k; i++)
    {
if (msg.charAt(i)=="а"){out +="a"}
else if (msg.charAt(i)=="б"){out +="b"}
else if (msg.charAt(i)=="в"){out +="v"}
else if (msg.charAt(i)=="г"){out +="g"}
else if (msg.charAt(i)=="д"){out +="d"}
else if (msg.charAt(i)=="е"){out +="e"}
else if (msg.charAt(i)=="ж"){out +="j"}
else if (msg.charAt(i)=="з"){out +="z"}
else if (msg.charAt(i)=="и"){out +="i"}
else if (msg.charAt(i)=="й"){out +="i"}
else if (msg.charAt(i)=="к"){out +="k"}
else if (msg.charAt(i)=="л"){out +="l"}
else if (msg.charAt(i)=="м"){out +="m"}
else if (msg.charAt(i)=="н"){out +="n"}
else if (msg.charAt(i)=="о"){out +="o"}
else if (msg.charAt(i)=="п"){out +="p"}
else if (msg.charAt(i)=="р"){out +="r"}
else if (msg.charAt(i)=="с"){out +="s"}
else if (msg.charAt(i)=="т"){out +="t"}
else if (msg.charAt(i)=="у"){out +="u"}
else if (msg.charAt(i)=="ф"){out +="f"}
else if (msg.charAt(i)=="х"){out +="h"}
else if (msg.charAt(i)=="ц"){out +="c"}
else if (msg.charAt(i)=="ч"){out +="4"}
else if (msg.charAt(i)=="ш"){out +="6"}
else if (msg.charAt(i)=="щ"){out +="6t"}
else if (msg.charAt(i)=="ь"){out +="i"}
else if (msg.charAt(i)=="ъ"){out +="y"}
else if (msg.charAt(i)=="ю"){out +="yu"}
else if (msg.charAt(i)=="я"){out +="q"}
else if (msg.charAt(i)=="А"){out +="A"}
else if (msg.charAt(i)=="Б"){out +="B"}
else if (msg.charAt(i)=="В"){out +="V"}
else if (msg.charAt(i)=="Г"){out +="G"}
else if (msg.charAt(i)=="Д"){out +="D"}
else if (msg.charAt(i)=="Е"){out +="E"}
else if (msg.charAt(i)=="Ж"){out +="J"}
else if (msg.charAt(i)=="З"){out +="Z"}
else if (msg.charAt(i)=="И"){out +="I"}
else if (msg.charAt(i)=="Й"){out +="J"}
else if (msg.charAt(i)=="К"){out +="K"}
else if (msg.charAt(i)=="Л"){out +="L"}
else if (msg.charAt(i)=="М"){out +="M"}
else if (msg.charAt(i)=="Н"){out +="N"}
else if (msg.charAt(i)=="О"){out +="O"}
else if (msg.charAt(i)=="П"){out +="P"}
else if (msg.charAt(i)=="Р"){out +="R"}
else if (msg.charAt(i)=="С"){out +="S"}
else if (msg.charAt(i)=="Т"){out +="T"}
else if (msg.charAt(i)=="У"){out +="U"}
else if (msg.charAt(i)=="Ф"){out +="F"}
else if (msg.charAt(i)=="Х"){out +="H"}
else if (msg.charAt(i)=="Ц"){out +="C"}
else if (msg.charAt(i)=="Ч"){out +="4"}
else if (msg.charAt(i)=="Ш"){out +="6"}
else if (msg.charAt(i)=="Щ"){out +="6T"}
else if (msg.charAt(i)=="Ь"){out +="I"}
else if (msg.charAt(i)=="Ъ"){out +="Y"}
else if (msg.charAt(i)=="Ю"){out +="YU"}
else if (msg.charAt(i)=="Я"){out +="Q"}

else {
out+=msg.charAt(i);
}

}
kvo.t.value=out;
}
//-->
