\n<html>\n<head>\n<title>Focus at the same time</title>\n</head>\n<body>\n<form id='MyForm'>\n<input type='text' id='Mine0' size='80' maxlength='255' value='' /><br />\n<input type='text' id='Mine1' size='80' maxlength='255' value='' />\n</form>\n</body>\n<script>\n   var MyForm = (document.all) ? document.all("MyForm") : document.getElementById("MyForm");\n   MyForm.Mine1.focus();\n</script>\n</html>\n