Intendi che quando viene caricata la pag il campo deve prendere il focus?
codice:
<html> 
<head> 
<script>
function c(){
document.getElementById("voglioilfocus").focus();
}
</script>
</head> 
<body onLoad="c()"> 
<input id="voglioilfocus" type="text">
</body> 
</html>