blob: b04c1509786b7229950ac3fa3fc627f7844a9b71 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
<html>
<head>
<script language="JavaScript">
function InitialFocus(){
document.frmSelectUser.radResidence[0].focus();
}
</script>
</head>
<body onfocus="InitialFocus();" >
<form name="frmSelectUser">
<table>
<tbody>
<tr>
<td><input name="radResidence" type="radio" value="KOR"></td>
</tr>
<tr>
<td><input name="radResidence" type="radio" value="JPN"></td>
</tr>
</tbody>
</table>
</form>
</body>
</html>
|