|    | 
<a href="sub.htm" target="sub">新しいウインドウを開く</a>
<a href="javascript:void(window.open('sub.htm','sub'))">新しいウインドウを開く</a>
<input
	type='button'
	value="新しいウインドウを開く"
	onclick='window.open("sub.htm","sub");'
>
<form
	action="sub.htm"
	method="get"
	target="sub"
>
<input type="submit" value="新しいウインドウを開く">
</form>
<form
	name="frm"
	action="sub.htm"
	method="get"
	target="sub"
>
</form>
<input
	type='button'
	value="新しいウインドウを開く"
	onclick='document.frm.submit();'
>
 |    |