// ---------------------------------------------------------------------------------------------
// 
// ÇÔ¼ö¸í: openModal(URL as string, Width as int, Height as int)
// 
//	- ¸ð´Þ »óÀÚ¸¦ ¿©´Â ÇÔ¼ö... ¸ð´Þ»óÀÚ¿¡ ³Ñ°ÜÁÖ´Â ÀÎÀÚ´Â ÀÌ ÇÔ¼ö°¡ Æ÷ÇÔµÇ¾î ÀÖ´Â window°¡ µÈ´Ù.
// 
// ÀÎÀÚ:
//		Url = OpenÇÒ URL,
//		Width = Ã¢ÀÇ Æø,
//		Height = Ã¢ÀÇ ³ôÀÌ,
//
// URL·Î '/modal.asp'¸¦ »ç¿ëÇÒ °æ¿ì ´ÙÀ½ º¯¼öµéÀ» »ç¿ëÇÑ´Ù.
//
//		openModalURL : ºó ¸ð´ÞÃ¢('/modal.asp')ÀÌ ¶ç¾îÁø ÈÄ ³»ºÎÀÇ iframe¿¡ loadµÉ ÆÄÀÏ¸í
//		openModalTitle : ¸ð´ÞÃ¢ÀÇ title bar¿¡ Ç¥½ÃµÉ title¸íÄª
//
// ----------------------------------------------------------------------------------------------
var openModalURL, openModalTitle="";

function openModal(sUrl,sWidth,sHeight) { 

		var returnValue;
		var sFeatures="dialogWidth:" + sWidth + "px;" +
		              "dialogHeight:" + sHeight + "px;" +
		              "center:yes;" +
		              "edge:suken;" +
		              "help:no;" +
		              "resizable:no;" +
		              "scroll:auto;" +
		            	"status:no;" ;
		
		returnValue = window.showModalDialog(sUrl,window,sFeatures);
		return returnValue;
}

