
function SWindow(Aurl,Aname,Awidth,Aheight,Atoolbar,Alocation,Astatus,Ascroll,Amenu,Aresize){
	var W01;
	Astr = "width=" + Awidth;
	Astr+= ",height=" + Aheight;
	if(Atoolbar)Astr+= ",toolbar";
	if(Alocation)Astr+= ",location";
	if(Astatus)Astr+= ",status";
	if(Ascroll)Astr+= ",scrollbars";
	if(Amenu)Astr+= ",menubar";
	if(Aresize)Astr+= ",resizable";
	W01=window.open(Aurl,Aname,Astr);
	W01.focus();
}
//U=URL N=ウインドウ名 W=幅 H=高さ
function Wopen(U,N,W,H){
	var WO1;
	var centerH=(screen.height-H)/2;
	var centerW=(screen.width-W)/2;
WO1=window.open(U,N,'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=yes,resizable=no,width='+ W +',height='+ H +',left='+ centerW +',top='+ centerH +'');
	WO1.focus();
			}
Wopen

