<!--
  var newWin,newWin1;
  var win_width,win_height,win_detail;
  var win_w = 800; //�\���T�C�Y��
  var win_h = 720; //�\���T�C�Y��
//-----------------------------------------------------------------------------
//-----------------------------------------------------------------------------
  function newopenImage(ttlName,imgFile){
    if (newWin){newWin.close();}
    win_width = (screen.width - win_w) / 2;
    win_height = (screen.height - win_h) / 2;
    win_detail = 'height='+win_h+',width='+win_w+',top='+win_height+',left='+win_width;
    newWin=window.open("","new",win_detail);
    newWin.document.write("<link rel=stylesheet type=text/css href=http://www.tosawan.com/gure/body_page.css>");
    newWin.document.write("<style type=text/css><!--");
    newWin.document.write("body {background-attachment:fixed;background-image:url('http://www.tosawan.com/gure/images/ktc_back_logo.jpg');}");
    newWin.document.write("--></style>");
    newWin.document.write("<h1>" + ttlName +  "</h1>");
    newWin.document.write("<p align=center><img border=2 src=" + imgFile + "><br><br>");
    newWin.document.write("<input type=button value='����' name=B1 onClick=window.close()></p>");
  }
//-----------------------------------------------------------------------------
//-----------------------------------------------------------------------------
  function newopenURL(URLName){
    if (newWin1){newWin1.close();}
    win_width = (screen.width - win_w) / 2;
    win_height = (screen.height - win_h) / 2;
    win_detail = 'height='+win_h+',width='+win_w+',top='+win_height+',left='+win_width;
    newWin1=window.open(URLName,"new1",win_detail);
  }
//-->
