<!--
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 +="zh"}
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 +="ch"}
else if (msg.charAt(i)=="ø"){out +="sh"}
else if (msg.charAt(i)=="ù"){out +="sht"}
else if (msg.charAt(i)=="ü"){out +="i"}
else if (msg.charAt(i)=="ú"){out +="u"}
else if (msg.charAt(i)=="þ"){out +="iu"}
else if (msg.charAt(i)=="ÿ"){out +="ia"}
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 +="ZH"}
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 +="CH"}
else if (msg.charAt(i)=="Ø"){out +="SH"}
else if (msg.charAt(i)=="Ù"){out +="SHT"}
else if (msg.charAt(i)=="Ü"){out +="I"}
else if (msg.charAt(i)=="Ú"){out +="U"}
else if (msg.charAt(i)=="Þ"){out +="IU"}
else if (msg.charAt(i)=="ß"){out +="IA"}

else {
out+=msg.charAt(i);
}

}
kvo.t.value=out;
}
//-->