おっしゃっているのは、
こういった感じのことでしょうか?
<script type="text/javascript">
<!--
function openwin01(url){
window.open(url, "subwindow1", "width=200,height=400,toolbar=yes,location=yes,directories=yes,status=yes,menubar=yes,scrollbars=yes,resizable=yes");
}
function openwin02(url){
window.open(url, "subwindow2", "width=400,height=200,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no");
}
// -->
</script>
<p><a href="test.html" onclick="openwin01(this.href);return false" onkeypress="openwin01(this.href);return false">サブウインドウ1</a></p>
<p><a href="test.html" onclick="openwin02(this.href);return false" onkeypress="openwin02(this.href);return false">サブウインドウ2</a></p>
<script>~</script>は<head>内か外部jsに書き込む部分です。
お礼
kuzumiHKさん ありがとうございます 上記の方法で試せばいくつも設定できることが分かりました。 恩にきます! ありがとうございました。
補足
アドバイスありがとうございます ホームページビルダーで作っている中級者なのですが、 現在の記述は <!--HPB_SCRIPT_CODE_40 function _HpbJumpURLinNewWindow(url) { if (url != '') { window.open(url, '_blank',"width=448 height=336align=center,border=0"); } } //--> <body> <a onclick="_HpbJumpURLinNewWindow('img00013.jpeg');" href="#"><img src="img00013.jpeg" alt="" width="182"></a> </body> という感じです。 試してみますが、この場合01とか02を付けるとしたら _HpbJumpURLinNewWindow01 _HpbJumpURLinNewWindow02なのでしょうか