3 <script type=
"text/javascript">
4 function text01_focus() {
5 document
.getElementById('text01_id').focus();
8 function text02_focus() {
9 document
.getElementById('text02_id').focus();
12 function password01_focus() {
13 document
.getElementById('password01_id').focus();
16 function password02_focus() {
17 document
.getElementById('password02_id').focus();
21 document
.activeElement
.blur();
25 <body onload=
"onLoad()">
26 <input type=
"text" id=
"text01_id">
27 <input type=
"text" id=
"text02_id">
28 <input type=
"password" id=
"password01_id">
29 <input type=
"password" id=
"password02_id">