function newwin_kor2(url, w, h) {

	if (w<1)
	{
		var popWin = window.open(url, "popWin", "toolbar=no,resizable=no,menubar=no,location=yes,scrollbars=yes,status=yes");
	}
	else
	{
		var popWin = window.open(url, "popWin", "width="+w+",height="+h+",toolbar=no,resizable=no,menubar=no,location=yes,scrollbars=no,status=yes");
	}

	popWin.focus();
}