Hola
chemon
Prueba este código:
Código HTML:
<html>
<head>
<script>
function tabu(e,obj) {
tecla=(document.all) ? e.keyCode : e.which;
if(tecla==13)
document.getElementById(obj).focus();
}
</script>
</head>
<body>
<input type="text" id="uno" onkeypress="tabu(event,'dos')" />
<input type="text" id="dos" onkeypress="tabu(event,'uno')" />
</body>
</html>
Saludos,