別ウィンドウをそれぞれ違うサイズで位置指定で開きたい
現在ウェブサイトを作っておりまして、別ウィンドウをそれぞれ違うサイズで位置指定で開きたいと思い、headの中に以下の記述をしました。
<SCRIPT language="JavaScript">
<!--
w = 800;
h = 600;
function season2009ss() {
x = (screen.width - w) / 2;
y = (screen.height - h) / 2;
subWin = window.open("look/season2009ss.html","season2009ss","screenX="+x+",screenY="+y+",left="+x+",top="+y+",width="+w+",height="+h+",scrollbars=yes");
}
//-->
</SCRIPT>
<SCRIPT language="JavaScript">
<!--
w = 500;
h = 660;
function contact() {
x = (screen.width - w) / 2;
y = (screen.height - h) / 2;
subWin = window.open("mail/contact.html","contact","screenX="+x+",screenY="+y+",left="+x+",top="+y+",width="+w+",height="+h+",scrollbars=yes");
}
//-->
</SCRIPT>
開きたい画面は二つあり、位置は両ウィンドウとも画面の真ん中で、サイズのみ違います。
しかし、この形ですとなぜかウィンドウサイズは両方とも同じになってしまい、狙い通りにいきません。
何が原因なのでしょうか。
お礼
GetDesktopWindow()ですか。気づきませんでした。回答ありがとうございました。