function openWindow(URL,winName,width,height) //scrollbars,resizable (Center)
{ 
	var w, strop
	strop = "width=" + width + ",height=" + height + 
			",left=" + (screen.width/2 - width/2) + ",top=" + (screen.height/2 - height/2) + 
			",scrollbars=1,menubar=0,status=0,toolbar=0,location=0,directories=0,resizable=1";
    window.open(URL,winName,strop);
}

function openWindow1(URL,winName,width,height) //scrollbars (Center)
{ 
	var w, strop
	strop = "width=" + width + ",height=" + height + 
			",left=" + (screen.width/2 - width/2) + ",top=" + (screen.height/2 - height/2) + 
			",scrollbars=1,menubar=0,status=0,toolbar=0,location=0,directories=0,resizable=0";
    window.open(URL,winName,strop);
}

function openWindow2(URL,winName,width,height) //nothing (Center)
{ 
	var w, strop
	strop = "width=" + width + ",height=" + height + 
			",left=" + (screen.width/2 - width/2) + ",top=" + (screen.height/2 - height/2) + 
			",scrollbars=0,menubar=0,status=0,toolbar=0,location=0,directories=0,resizable=0";
    window.open(URL,winName,strop);
}

function openWindowA(URL,winName,width,height,left,top) //scrollbars,resizable (Left,top)
{ 
	var w, strop
	strop = "width=" + width + ",height=" + height + 
			",left=" + left + ",top=" + top + 
			",scrollbars=1,menubar=0,status=0,toolbar=0,location=0,directories=0,resizable=1";
    window.open(URL,winName,strop);
}

function openWindowA1(URL,winName,width,height,left,top) //scrollbars (Left,top)
{ 
	var w, strop
	strop = "width=" + width + ",height=" + height + 
			",left=" + left + ",top=" + top + 
			",scrollbars=1,menubar=0,status=0,toolbar=0,location=0,directories=0,resizable=0";
    window.open(URL,winName,strop);
}

function openWindowA2(URL,winName,width,height,left,top) //nothing (Left,top)
{ 
	var w, strop
	strop = "width=" + width + ",height=" + height + 
			",left=" + left + ",top=" + top + 
			",scrollbars=0,menubar=0,status=0,toolbar=0,location=0,directories=0,resizable=0";
    window.open(URL,winName,strop);
}
function MM_openBrWindow(theURL,winName,features) { //°øÁöÃ¢ ¶ç¿ì±â
  window.open(theURL,winName,features);
}
function openWindow_notice(URL,winName,width,height) //scrollbars,resizable (Center)
{ 
	var w, strop
	strop = "width=" + width + ",height=" + height + 
			",left=" + (screen.width/2 - width/2) + ",top=" + (screen.height/2 - height/2) + 
			",scrollbars=1,menubar=0,status=0,toolbar=0,location=0,directories=0,resizable=1";
    window.open(URL,winName,strop);
}



