Hola
borjagat
Prueba este ejemplo:
Código PHP:
<html>
<head>
<script type="text/javascript">
var foco = null;
</script>
</head>
<body>
<form>
<input type="text" name="txt1" onfocus = "foco=this" />
<input type="text" name="txt2" onfocus = "foco=this" />
<input type="button" onclick = "alert(foco.name)" />
</form>
</body>
</html>
Saludos,