<!--
// サブウィンドウの表示方法を指定する
l = 60; // 表示するx座標
t = 30; // 表示するy座標
w = 400; // 横幅
h = 450; // 縦幅
function openWindowbaner() {
  window.open("baner.html","OpenWindow",
    "screenX="+l+",screenY="+t+",left="+l+",top="+t+",width="+w+",height="+h+", scrolbars=no,location=no,menubar=no,toolbar=no, status=no,directories=no,resizable=no");
}
-->