// 팝업창 호출 형식

OPEN_TYPE_WINDOW = 1;
OPEN_TYPE_MODAL = 2;
OPEN_TYPE_WINDOW_VOICEI = 3

// 팝업창 호출
function edu_OpenPopup(urlPath, pageName, width, height, openType)
{
	var sFeatures;
	var popWin;

	switch (openType)
	{
		case OPEN_TYPE_WINDOW:
			sFeatures = "status=yes,width="+ width + ",height=" + height + ",left=10,top=5,resizable=yes,scrollbars=yes";
			popWin = window.open(urlPath, pageName, sFeatures);
			break;

		case OPEN_TYPE_MODAL:
			sFeatures = "dialogWidth:" + width + "px;dialogHeight:" + height + "px;scroll:no;;status:no;resizable:no;scroll:yes;help:no;center:true";
			popWin = window.showModalDialog(urlPath, window, sFeatures);
			break;
			
		case OPEN_TYPE_WINDOW_VOICEI:
			sFeatures = "status=yes,width="+ width + ",height=" + height + ",left=10,top=5,resizable=no,scrollbars=no";
			popWin = window.open(urlPath, pageName, sFeatures);
			break;
	}

	return popWin;

}
