function imgWin(img_src,W,H){
	X=10; Y=10; S="yes"; winW=W; winH=H;
	if(screen.availWidth){
		X=(screen.availWidth-W)/2; Y=(screen.availHeight-H)/2;
		S=(W>screen.availWidth-10 || H>screen.availHeight-29) ? "yes" : "no";
		if(W>screen.availWidth-26) { X=0; winW=screen.availWidth-10; }
		if(H>screen.availHeight-45){ Y=0; winH=screen.availHeight-29; }
	}
	wstyle = "toolbar=no,location=no,directories=no,status=no,menubar=no,dependent=yes,";
	wstyle+= "scrollbars="+S+",resizable="+S+",width="+winW+",height="+winH+",screenX="+X+",screenY="+Y+",left="+X+",top="+Y;
	var HTML = '<html><head><title>Photo</title></head>';
	HTML+= '<body marginwidth="0" marginheight="0" leftmargin="0" topmargin="0">';
	HTML+= '<a href="javaScript:window.close()" title="Clickするとwindowを閉じます">';
	HTML+= '<img src="'+img_src+'" width="'+W+'" height="'+H+'" border="0" alt="image"></a>';
	HTML+= '</body></html>';
	w = open("","imgWin",wstyle);
	w.document.open();
	w.document.write(HTML);
	w.document.close();
}
function newWin(myURL,myTarget,W,H,S){
	X=10; Y=10; winW=W; winH=H;
	wstyle = "toolbar=no,location=no,directories=no,status=no,menubar=no,dependent=yes,";
	wstyle+= "scrollbars="+S+",resizable="+S+",width="+winW+",height="+winH+",screenX="+X+",screenY="+Y+",left="+X+",top="+Y;
	w = open(myURL,myTarget,wstyle);
	w.focus();
}
