А не подскажете, почему перестал работать этот самый перескок?
http://msufootball.ru/tournaments/op...4/application/
<script>
function Jump(x){
var ml = ~~x.getAttribute('maxlength');
if(ml && x.value.length >= ml){
do{
x = x.nextSibling;
}
while(x && !(/text/.test(x.type)));
if(x && /text/.test(x.type)){
x.focus();
}
}
}
</script>