/*
リンクを張るとき使って下さい。
<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 WinFixOpen(src){
   var wo = window.open(src,"_blank","toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=yes,resizable=yes,width=300,height=400");
   wo.window.focus();
}

function WinClose(){
   self.window.close();
}

