﻿/*
リンクを張るとき使って下さい。
<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=350,height=400");
   wo.window.focus();
}

function WinClose(){
   self.window.close();
}

function writeBtClose(){
   document.write('<div id="bt_close" class="clr">');
   document.write('<p class="hidetxt"><a href="javascript:WinClose()" title="CLOSE">CLOSE</a></p>');
   document.write('</div>');
}

/* <a href="javascript:void(0)" onclick="show_hide_contents('content_comment34')">linktext</a> */
function show_hide_contents(divId){
    contentsDivId = divId;
    if(document.getElementById(contentsDivId).style.display=='none'){
        document.getElementById(contentsDivId).style.display='block';
/*        location.href='#'+divId;  */
    }else{
        document.getElementById(contentsDivId).style.display='none';
    }
}
