mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
24 lines
522 B
HTML
24 lines
522 B
HTML
|
<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>
|