mmm prova questa:
codice:
function check(obj, evt)
	{
	var charCode = (evt.charCode)?evt.charCode : ((evt.which)?evt.which:evt.keyCode)
	var key = charCode
		if (key==13) {
			do
				if (obj!=null && obj.nextSibling!=null)	obj=obj.nextSibling
				else obj=obj.parentNode.firstChild
		while (obj.nodeType!=1) 
	obj.focus()
	return false
	}
return true
}
e metti onKeyPress="check( this,event )" in ogni tag input.

L'unico dubbio č che la javascript Console mi dā una Exception alla linea corrispondente al focus(). Per il resto sembra funzionare.