var GRS_chatwin="";

function GRS_mkSubWin2(URL,winName,x,y,w,h){

    //--パラメーターの指定
    var GRS_para =""
             +" left="        +x
             +",screenX="     +x
             +",top="         +y
             +",screenY="     +y
             +",toolbar="     +0
             +",loction="     +0
             +",directories=" +0
             +",status="      +0
             +",menubar="     +0
             +",scrollbars="  +0
             +",resizable="   +1
             +",innerWidth="  +w
             +",innerHeight=" +h
             +",width="       +w
             +",height="      +h

        self.window.name="events"; 
        GRS_chatwin=window.open(URL,winName,GRS_para);
        GRS_chatwin.focus();
        GRS_chatwin.document.close();

}



function GRS_mkSubWin(URL,winName,x,y,w,h){

    //--パラメーターの指定
    var GRS_para =""
             +" left="        +x
             +",screenX="     +x
             +",top="         +y
             +",screenY="     +y
             +",toolbar="     +0
             +",loction="     +0
             +",directories=" +0
             +",status="      +0
             +",menubar="     +0
             +",scrollbars="  +1
             +",resizable="   +1
             +",innerWidth="  +w
             +",innerHeight=" +h
             +",width="       +w
             +",height="      +h

        self.window.name="events"; 
        GRS_chatwin=window.open(URL,winName,GRS_para);
        GRS_chatwin.focus();
        GRS_chatwin.document.close();

}
