﻿// 팝업페이지
function getPopUp( url, mname, mwidth, mheight )
{
	var toppos = (screen.height-mheight)/2 - 100;
	var leftpos = (screen.width-mwidth)/2;
	open(url, mname, "menubar=no,toolbar=no,location=no,directories=no,status=no,scrollbars=yes,resizable=no,width="+mwidth+",height="+mheight+",left="+leftpos+",top="+toppos);
}

//스크롤 없는 팝업페이지
function NoPopup(theURL,winName,width,height)
{
	var mheight = height;
	var mwidth = width;
	var toppos = (screen.height-mheight)/2 - 100;
	var leftpos = (screen.width-mwidth)/2;
	window.open(theURL,winName,"menubar=0,toolbar=0,location=0,directories=0,status=0,scrollbars=0,resizable=0,width="+mwidth+",height="+mheight+",left="+leftpos+",top="+toppos);
}

//===============================================================================================================
// 원하는 크기로 새창을 띄운다.
// 파라메타 ( 주소, 세로길이, 가로길이, 창 이름 )
//===============================================================================================================
function popupWindow ( url, mwidth, mheight, mname, scrollbars ) {
	var toppos = (screen.height-mheight)/2 - 100;
	var leftpos = (screen.width-mwidth)/2;
	open(url, mname, "menubar=no,toolbar=no,location=no,directories=no,status=no,scrollbars="+scrollbars+",resizable=no,width="+mwidth+",height="+mheight+",left="+leftpos+",top="+toppos);
}
