/*****************************************************************************
 *                ÅëÇÕÇÁ·¹ÀÓ ÀÚµ¿ ¸®»çÀÌÁî µÇµµ·Ï ±â´ÉÀ» ¼öÁ¤ÇÑ´Ù.                   *
 *                         2007-11-28  by ¹æ±â¹è                              *
 *****************************************************************************/
    function AfterSubmitProcess() {
		try {
	        var oFrame = document.getElementById("mergerFrame");
	        if (oFrame == null) {
	            alert("ÆäÀÌÁö ÅëÇÕ¿ë ÇÁ·¹ÀÓ¸íÀÌ mergerFrameÀ¸·Î ¼³Á¤µÇÁö ¾Ê¾Ò½À´Ï´Ù.\\nÇÁ·¹ÀÓ ÅëÇÕ °¡ÀÌµå¸¦ ÂüÁ¶ÇÏ¿©  ¼Ò½º¸¦ ¼öÁ¤ÇÏ½Ã±â ¹Ù¶ø´Ï´Ù.");
	            return;
	        }

			/* ÇÁ·¹ÀÓÅëÇÕ°¡ÀÌµå¿¡ ¸í½ÃµÈ epeople_frame.html ÆÄÀÏÀÌ ±â°ü ¹èÆ÷°¡ ³¡³­ °æ¿ì
			 * ¾Æ·¡ oFrame.setAttribute("scrolling", "no"); ±¸ºÐ 1ÁÙÀ» »èÁ¦ÇÏ¸é  
			 * ½ºÅ©·Ñ¹Ù°¡ ±ôºýÀÌ´Â Çö»óÀ» Á¦°Å ÇÒ ¼ö ÀÖ´Ù.  
			 * FireFox ºê¶ó¿ìÀú¸¦ À§ÇÑ ÄÚµå
			 * ÀÌ ÆÄÀÏ°ú jsFrame.js ÆÄÀÏ¿¡µµ ¼öÁ¤»çÇ×ÀÌ ÀÖÀ¸¹Ç·Î ÇÔ²² ¼öÁ¤ÇØ¾ß ÇÑ´Ù.*/		
			oFrame.setAttribute("scrolling", "auto");
			oFrame.setAttribute("width", "100%");
			oFrame.setAttribute("height", "950");

			var epeopleFocusTop = document.getElementById("epeopleFrameFocus");
			if(epeopleFocusTop == null) {
				var focusTop = document.createElement("span");
				focusTop.setAttribute("name", "epeopleFrameFocus");
				focusTop.setAttribute("id", "epeopleFrameFocus");
				focusTop.setAttribute("style", "display:none;");
				document.body.insertBefore(focusTop, document.body.childNodes[0]);
			}

	        var urlhref = String(document.location.href);
	        var uri = urlhref.split("#epeopleFrameFocus");
	        document.location.href = uri[0] + '#epeopleFrameFocus';


		} catch (e) { }
	}

	function frame_resize(epeopleH, epeopleW) {
		try {
			
        	var oFrame = document.getElementById("mergerFrame");
			
			/* ÇÁ·¹ÀÓÅëÇÕ°¡ÀÌµå¿¡ ¸í½ÃµÈ epeople_frame.html ÆÄÀÏÀÌ ±â°ü ¹èÆ÷°¡ ³¡³­ °æ¿ì
			 * ¾Æ·¡ if ±¸¹® 2ÁÙÀ» »èÁ¦ÇÑ´Ù. 
			 * Internet ExplorerÀ» À§ÇÑ ÄÚµå 
			 * ÀÌ ÆÄÀÏ°ú jsFrame.js ÆÄÀÏ¿¡µµ ¼öÁ¤»çÇ×ÀÌ ÀÖÀ¸¹Ç·Î ÇÔ²² ¼öÁ¤ÇØ¾ß ÇÑ´Ù.*/					
			if(window.navigator.appName.indexOf("Explorer") != -1)
				epeopleW = new Number(epeopleW) + 14;
				
			oFrame.setAttribute("scrolling", "no");
			oFrame.setAttribute("width", "100%");
			oFrame.setAttribute("height", epeopleH);

		} catch (e) { }
	}

/**************************************************************************
 *                 ÅëÇÕÇÁ·¹ÀÓ ÀÚµ¿ ¸®»çÀÌÁî µÇµµ·Ï ±â´ÉÀ» ¼öÁ¤ÇÑ´Ù.               *
 * ÀÌ ÇÔ¼ö´Â ±â°ü¿¡ ¹èÆ÷µÈ /epeople/frame/epeople_frame.html ÆÄÀÏ¿¡¼­ È£ÃâµÈ´Ù.  *
 **************************************************************************/	
	function epeople_resize() {
		try {
			var epeople_href = location.href.split("?");
			var paramL = epeople_href[1].split("&");
			var param;
			var epeopleH=950;
			var epeopleW=600;
			var winName = "";

			for(i=0; i < paramL.length ; i++) {
				param = paramL[i].split("=");
				if(param[0] == "height") {
					epeopleH = param[1];
				} else if(param[0] == "width") {
					epeopleW = param[1];
				}
			}
			parent.parent.frame_resize(epeopleH, epeopleW);
		} catch(e) {  }
	}	
