﻿<!---- JavaScript Image Window Opener c. Jin Saburi( http://www.saburi.com/ )---->

function openSubWindow(URL,W,H) {
	nowX = ((screen.width/2) - W/2);
	nowY = ((screen.height/2) - H/2);

	if (navigator.appName == "Microsoft Internet Explorer")
	{
		if (navigator.platform.substr(0,3) == "Mac") {
			smallwin =  window.open(URL,"subwin","resizable=yes,directories=no,menubar=no,location=no,scrollbars=no,status=no,width="+W+",height="+H+",top=" + nowY + ",left=" + nowX);
		} else{
			smallwin = window.open(URL,"subwin","resizable=yes,directories=no,menubar=no,location=no,scrollbars=no,status=no,width="+W+",height="+H+",top=" + nowY + ",left=" + nowX);
		}
	} else {
		smallwin = window.open(URL,"subwin","resizable=yes,directories=no,menubar=no,location=no,scrollbars=no,status=no,width="+W+",height="+H+",screenY=" + nowY + ",screenX=" + nowX);
	}
	
	//alert('smallwin:'+(smallwin != null));
	return (smallwin != null);
};

function openNormalWindow(URL,W,H) {

	nowX = ((screen.width/2) - W/2);

	nowY = ((screen.height/2) - H/2);

	if (navigator.appName == "Microsoft Internet Explorer")

    	{

    	if (navigator.platform.substr(0,3) == "Mac") {

       	 smallwin = window.open(URL,"subwin","resizable=yes,directories=yes,menubar=yes,location=yes,scrollbars=no,status=yes,width="+W+",height="+H+",top=" + nowY + ",left=" + nowX);

       	 } else{

       	 smallwin = window.open(URL,"subwin","resizable=yes,directories=yes,menubar=yes,location=yes,scrollbars=no,status=yes,width="+W+",height="+H+",top=" + nowY + ",left=" + nowX);

       	 }

	}             

	else

    	{

      	 smallwin = window.open(URL,"subwin","resizable=yes,directories=yes,menubar=yes,location=yes,scrollbars=yes,status=yes,width="+W+",height="+H+",screenY=" + nowY + ",screenX=" + nowX);

	}	

};
