﻿/*
リンクを張るとき使ってね
<a href="xxxx.html" target="Popup" onClick="WinOpen(this.href,xxx,xxx); return false;"></a>
*/
function WinOpen(src,width,height){
   if(! WinOpen.arguments[1]) width  = 500;
   if(! WinOpen.arguments[2]) height = 500;
   var wo = window.open(src,"_blank","toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=yes,resizable=yes,width=" + width + ",height=" + height);
   wo.window.focus();
}
function WinClose(){
   self.window.close();
}
/*閉じるボタンを表示するスクリプト*/
function ShowBtClose() {
document.write('<tr valign="top"><td class="popupbtclose"><a href="#" onclick="WinClose();"><img src="./img/bt_close.gif" width="76" height="23" border="0" alt="Close"></a></td></tr>');
}
