* Que cuando carge, aparezca con el foco en input text usuarios.
* Que al ingresar datos de usuario, mediante un enter o un tab el foco pase al input text password.
Espero darme a entender, desde ya se agradece su colaboración.
Código PHP:
<form id="form1" name="form1" method="post" action="xx.php">
<table width=50% border=1 cellspacing=0 cellpadding=2 align=center>
<tr>
<td width=30% align=right>Usuario </td>
<td width=70%>
<input name="usuario" type="text" id="usuario" size=30 maxlength=30 />
</td>
</tr>
<tr>
<td width=30% align=right>Password </td>
<td width=70%>
<input name="password" type="text" id="password" size=30 maxlength=30 />
</td>
</tr>
<tr>
<td colspan=2 align=center>
<input name="envia" type="submit" value="Enviar" />
</td>
</tr>
</table>
</form>