Hola a todos.
A ver si este ejemplo sirve de ayuda:
Código:
<html>
<head>
<script type="text/javascript">
foco = null;
</script>
</head>
<body>
<form>
<input type="text" name="pepe" onfocus="foco=this" />
<input type="text" name="jose" onfocus="foco=this" />
<input type="button" onclick="alert(foco.name)" />
</form>
</body>
</html>
Saludos,