/*
 	==============================================================================================================
	ÆÄÀÏ¸í		: fnc_window_conrtol.js
	ÀÛ¼ºÀÚ		: ±è »ó ¿ì
	³»   ¿ë		: ¹öÆ° onClick½Ã ÇØ´ç URL·Î ÀÌµ¿ , ¹öÆ°  onClick½Ã PopupÃ¢ ¶ç¿ò, ¹öÆ° onClick½Ã popupÃ¢ ´ÝÀ½
	ÀÛ¼ºÀÏÀÚ	: 2001.6.10
	ÃÖÁ¾¼öÁ¤ÀÏ	: 
	¼ö Á¤ ÀÎ	: 
	¼öÁ¤ÀÏÀÚ	: 
    ¼öÁ¤³»¿ë	:
     ==================================================================================================================
*/
  	
/*
	function FncLink(strFormName,strURL) 						: click½Ã ÇØ´ç URL·Î ÀÌµ¿
	fncPopup(strUrl,intWidth,intHeight,objWndPopup)				: click½Ã window open Ã¢ ¿­À½  			 
	function fncPopupCancel()									: click½Ã ÇØ´ç Popup Ã¢À» ´ÝÀ½ 
	fncQuickAdd(objCtrlValue, intWidth, intHeight, objWndPopup)	: ºü¸¥ Ãß°¡¿¡¼­ ¸Þ´º ¼±ÅÃ½Ã µî·ÏÆË¾÷Ã¢À» ¶ç¿ò.
*/ 
   
   	function fncUrl(strURL){
		location.href = strURL;
   	}
   
	function fncLink(strURL) {
		location.href=strURL;
	}
	
	function fncPopupClose() {
		self.close();
	}

	function fncPopup(strUrl,intWidth,intHeight,objWndPopup){
		objWndPopup = window.open(strUrl, objWndPopup, 'alwaysRaised=1,hotkeys=0,dependent=1,menubar=0,title=0,toolbar=0,location=0,directory=0,scrollbars=yes,resizable=0,width='+intWidth+',height='+intHeight);
		objWndPopup.focus();
	}
	
	function fncSitePopup(strUrl,intWidth,intHeight,objWndPopup){
		objWndPopup = window.open(strUrl, objWndPopup, 'alwaysRaised=1,hotkeys=1,dependent=1,menubar=1,title=1,toolbar=1,location=1,directory=1,scrollbars=yes,resizable=1,width='+intWidth+',height='+intHeight);
		objWndPopup.focus();
	}
