01.
<script language=
"javascript"
>
02.
function
fncSubmit()
03.
{
04.
document.form1.point.focus();
05.
return
true
;
06.
}
07.
</script>
08.
09.
<form id=
"form1"
name=
"form1"
method=
"post"
action=
"test_script2.php"
OnSbumit=
"return fncSubmit();"
>
10.
<label>
11.
<input type=
"text"
name=
"point"
id=
"point"
/>
12.
</label>
13.
<label>
14.
<input type=
"submit"
name=
"Submit"
value=
"Submit"
/>
15.
</label>
16.
</form>