	document.writeln("<script language=\"JScript\" src=\"/include/js/common.js\"></script>");
/*
  	function hideBMenu(){
		if (strCurrentMode == 'View'){
			hideView(intViewIndex);
		}
	}

   top_menu_01on = new Image();
   top_menu_01on.src = "/home/kor/img/GlobalNav/top_01_off.gif";
   top_menu_02on = new Image();
   top_menu_02on.src = "/home/kor/img/GlobalNav/top_02_off.gif";
   top_menu_03on = new Image();
   top_menu_03on.src = "/home/kor/img/GlobalNav/top_03_off.gif";
   top_menu_04on = new Image();
   top_menu_04on.src = "/home/kor/img/GlobalNav/top_04_off.gif";
   top_menu_05on = new Image();
   top_menu_05on.src = "/home/kor/img/GlobalNav/top_05_off.gif";
   top_menu_06on = new Image();
   top_menu_06on.src = "/home/kor/img/GlobalNav/top_06_off.gif";
   top_menu_07on = new Image();
   top_menu_07on.src = "/home/kor/img/GlobalNav/top_07_off.gif";


	top_menu_01off = new Image();
   top_menu_01off.src = "/home/kor/img/GlobalNav/top_01_on.gif";
   top_menu_02off = new Image();
   top_menu_02off.src = "/home/kor/img/GlobalNav/top_02_on.gif";
   top_menu_03off = new Image();
   top_menu_03off.src = "/home/kor/img/GlobalNav/top_03_on.gif";
   top_menu_04off = new Image();
   top_menu_04off.src = "/home/kor/img/GlobalNav/top_04_on.gif";
   top_menu_05off = new Image();
   top_menu_05off.src = "/home/kor/img/GlobalNav/top_05_on.gif";
   top_menu_06off = new Image();
   top_menu_06off.src = "/home/kor/img/GlobalNav/top_06_on.gif";
   top_menu_07off = new Image();
   top_menu_07off.src = "/home/kor/img/GlobalNav/top_07_on.gif";


   function IMG_ENABLE(imgName, type) {
   	if(type=="off"){
      	imgOn = eval(imgName + "on.src");
       	document[imgName].src = imgOn;
      }
   }

   function IMG_DISABLE(imgName) {
		imgOff = eval(imgName + "off.src");
	   document[imgName].src = imgOff;
   }

   var strCurrentMode = "notView";
	var intViewIndex;

	function hideView(menuNum){
		var OElementLayer;

		OElementLayer= document.getElementById("bmenu" + menuNum);
		OElementLayer.style.display = "none";

		intViewIndex = 0;
		strCurrentMode = "notView"
	}

	function viewBmenu(menuNum,oBox){
		var intLeft = oBox.firstChild.offsetLeft;
		var intTop = oBox.firstChild.offsetTop;

		//¸Þ´º¹öÆ°°ú bmenu¿ÍÀÇ ³ôÀÌ°£°Ý º¯¼ö.
		var topHeight = 81;
		var intLeft = 0;

		if (strCurrentMode == "notView"){
			OElementLayer = document.getElementById("bmenu" + menuNum);
			OElementLayer.style.pixelLeft = intLeft;
			OElementLayer.style.pixelTop = intTop + topHeight;
			OElementLayer.style.display = "block";
			intViewIndex = menuNum;
			strCurrentMode = "View";
		}
		else if (strCurrentMode == "View"){

			OElementLayerHide = document.getElementById("bmenu" + intViewIndex);
			OElementLayerHide.style.display = "none";

			OElementLayer = document.getElementById("bmenu" + menuNum);
			OElementLayer.style.pixelLeft = intLeft;
			OElementLayer.style.pixelTop = intTop + topHeight;
			OElementLayer.style.display = "block";

			intViewIndex = menuNum;
			strCurrentMode = "View";
		}
	}

	//  ³Ñ°Ü¿Â ÅÂ±× ¹øÈ£¸¦ »ç¿ëÇÏ¿© ±× ÅÂ±×¸¦ ¼û±â°í º¸ÀÎ´Ù.
	function ShowHideTag(idx) {
		var currentDisplayStyle
		currentDisplayStyle = document.all(idx).style.display ;

		if (currentDisplayStyle == 'none') {
			document.all(idx).style.display = 'block';
		}
		else {
			document.all(idx).style.display = 'none';
		}
	}

	//  ³Ñ°Ü¿Â±× ¹øÈ£¸¦ »ç¿ëÇÏ¿© ±× ÅÂ±×¸¦ ¼û±â°í º¸ÀÎ´Ù.
	// ¶ÇÇÑ ÀÌ¹ÌÁöµµ »óÅÂ¿¡ µû¶ó º¯°æÇÑ´Ù.
	function OnClickShowHideIcon(idx1,idx2,imagename1, imagename2) {
		var currentImageSrc
		currentImageSrc = document.all(idx1).src ;

		// ÅÂ±× ¼û±â±â º¸ÀÌ±â ÇÔ¼ö È£Ãâ
		ShowHideTag(idx2) ;


		currentImageSrc = currentImageSrc.substr(currentImageSrc.indexOf("/",currentImageSrc.indexOf("/",currentImageSrc.indexOf("/",0)+1)+1));

		if (currentImageSrc == imagename1) {
			document.all(idx1).src = imagename2;
		}
		else {
			document.all(idx1).src = imagename1;
		}
	}

	var currentidx = '';
*/