/**
 * Ã¢ ¶ç¿ì±â
 */
function OpenWin(url, width, height)
{
	if (width == 800)
	{
		var width = 950;
		var height = 680;
	}
	
	// server º¯°æ
	url = url.replace("gallog57.ehard.co.kr", "gallog54.ehard.co.kr");
	
	var iMyWidth = (window.screen.width / 2) - (width / 2);
	var iMyHeight = (window.screen.height / 2) - (height / 2);
	
	var winObj = window.open(url, "GallogWin", "height=" + height + ", width=" + width +", resizable=yes, left=" + iMyWidth + ", top=" + iMyHeight + ", screenX=" + iMyWidth + ", screenY=" + iMyHeight + ", scrollbars=no");
	winObj.focus();
}