Sure, it is pretty straight forward stuff, though:
!-- **************************** -->
<!-- login screen shown initially -->
<!-- **************************** -->
<HEAD>
<TITLE>Login Page</TITLE>
<script language="javascript">
function selectField(loginform, email1){
// Set the focus using the select method
document.loginform.email1.focus();
}
</script>
</HEAD>
<BODY topmargin="0" onload="selectField()">
<cfoutput><form name="loginform" action="index.cfm" method="post"> </cfoutput>
<table align="center" border="0">
<TR>
<TD align="center">
Logon:<br><input type="text" name="email1" value="" tabindex="1"><BR>
Password:<BR><input type="password" name="password" tabindex="2"></TD>
</TR>
<tr>
<td height="20"></td>
</tr>
<TR align="center">
<TD colspan="2"><input type="submit" value="Enter">
<input align="right" type="button"value="Cancel"onclick="javascript:self.close()">
<input type="reset" value="Reset"></TD>
</TR>
</form>
</table>
</BODY>
</HTML> The only dumb questions are the ones that are never asked