// JavaScript Document

// サブウィンドウから親ウィンドウのURLを変更する
l = 0; // 表示するx座標
t = 0; // 表示するy座標
w = 720; // 横幅
h = 600; // 縦幅
function openWindow() {
  window.open("campaign/index.html","OpenWindow",
    "screenX="+l+",screenY="+t+",left="+l+",top="+t+",width="+w+",height="+h+", scrollbars=yes,location=no,menubar=no,toolbar=no, status=no,directories=no,resizable=yes");
}

function openWindow2() {
  window.open("../campaign/index.html","OpenWindow",
    "screenX="+l+",screenY="+t+",left="+l+",top="+t+",width="+w+",height="+h+", scrollbars=yes,location=no,menubar=no,toolbar=no, status=no,directories=no,resizable=yes");
}


