//Àü¿ªº¯¼ö ¼±¾ð
var SERVER_URL="http://www.pongdang.com";

function returnObject(frmIndex,eleIndex,errMessage){
	if(errMessage!='')
		alert(errMessage);
	document.forms[frmIndex].elements[eleIndex].focus();
}

function submitFrm(frmIndex){
	document.forms[frmIndex].submit();
}

function checkAll(frmIndex){
	var totalCount=document.forms[frmIndex].chkID.length;	
	if(totalCount>1){
		if(document.forms[frmIndex].chkID[0].checked){
			for(i=0;i<totalCount;i++){
				document.forms[frmIndex].chkID[i].checked=false;
			}
		}else{
			for(i=0;i<totalCount;i++){
				document.forms[frmIndex].chkID[i].checked=true;
			}
		}
	}else{
		if(document.forms[frmIndex].chkID.checked)
			document.forms[frmIndex].chkID.checked=false;
		else
			document.forms[frmIndex].chkID.checked=true;
	}
	return;
}

function checkAllS(frmIndex){
	var totalCount=document.forms[frmIndex].chkID.length;
	var nChkID;
	if(totalCount>1){
		if(document.forms[frmIndex].CACheckBox.checked){
			for(i=0;i<totalCount;i++){
				nChkID=document.forms[frmIndex].chkID[i];
				if(nChkID.disabled==true){
					nChkID.checked=false;
				}else{
					nChkID.checked=true;
				}
			}
		}else{
			for(i=0;i<totalCount;i++){
				nChkID=document.forms[frmIndex].chkID[i];
				nChkID.checked=false;
			}
		}
	}else{
		if(document.forms[frmIndex].CACheckBox.checked){
			nChkID=document.forms[frmIndex].chkID;
			if(nChkID.disabled==true){
				nChkID.checked=false;
			}else{
				nChkID.checked=true;
			}
		}else{
			document.forms[frmIndex].chkID.checked=false;
		}
	}
	return;
}

function movePage(mPage,sURL){
	setValue();
	document.actFrm.action=sURL;
	document.actFrm.nowPage.value=mPage;
	document.actFrm.submit();
}

function chkMove(mPage,totalPage,sURL){
	if(mPage.value==''){
		alert("ÆäÀÌÁö ¹øÈ£¸¦ ÀÔ·ÂÇØ ÁÖ¼¼¿ä");
		mPage.focus();
		return;
	}
	if(mPage.value*1>totalPage*1){
		alert("ÀÌµ¿ÇÏ·Á´Â ÆäÀÌÁö ¹üÀ§¸¦ ³Ñ¾î¼¹½À´Ï´Ù");
		mPage.focus();
		return;
	}
	setValue();
	document.actFrm.action=sURL;
	document.actFrm.nowPage.value=mPage.value;
	document.actFrm.submit();
}

function openWin(oURL,wwidth,wheight,pName){	//½ºÅ©·Ñ¹Ù ÀÖ´Â »õÃ¢
	var popName;
	if(pName&&pName!=""){
		popName=pName;
	}else{
		popName="popWindow";
	}
	window.open(oURL,popName,"left=0,top=0,width="+wwidth+",height="+wheight+",scrollbars=yes,resizable=yes,menubar=no,status=no,toolbar=no,location=no");
}
function openWinNR(oURL,wwidth,wheight,pName){	//½ºÅ©·Ñ¹Ù ÀÖ´Â »õÃ¢, Å©±âÁ¶Àý ºÒ°¡´É
	var popName;
	if(pName&&pName!=""){
		popName=pName;
	}else{
		popName="popWindow";
	}
	window.open(oURL,popName,"left=0,top=0,width="+wwidth+",height="+wheight+",scrollbars=yes,resizable=no,menubar=no,status=no,toolbar=no,location=no");
}
function openWinS(oURL,wwidth,wheight,pName){	//½ºÅ©·Ñ¹Ù ¾øÀ½
	var popName;
	if(pName&&pName!=""){
		popName=pName;
	}else{
		popName="popWindow";
	}
	window.open(oURL,popName,"left=0,top=0,width="+wwidth+",height="+wheight+",scrollbars=no,resizable=yes,menubar=no,status=no,toolbar=no,location=no");
}
function openWinSNR(oURL,wwidth,wheight,pName){	//½ºÅ©·Ñ¹Ù ¾øÀ½ Å©±âÁ¶Àý ºÒ°¡´É »õÃ¢ ¶ç¿î´Ù
	var popName;
	if(pName&&pName!=""){
		popName=pName;
	}else{
		popName="popWindow";
	}
	window.open(oURL,popName,"left=0,top=0,width="+wwidth+",height="+wheight+",scrollbars=no,resizable=no,menubar=no,status=no,toolbar=no,location=no");
}


function openWinFullScreen(oURL,wwidth,wheight,pName){	//½ºÅ©·Ñ¹Ù ¾øÀ½ Å©±âÁ¶Àý ºÒ°¡´É »õÃ¢ ¶ç¿î´Ù
	var popName;
	if(pName&&pName!=""){
		popName=pName;
	}else{
		popName="popWindow";
	}
	window.open(oURL,popName,"left=0,top=0,width="+wwidth+",height="+wheight+",scrollbars=no,resizable=no,menubar=no,status=no,toolbar=no,location=no,fullscreen");
}


function openWinSTheme(oURL,wwidth,wheight,pName){
	var popName;
	if(pName&&pName!=""){
		popName=pName;
	}else{
		popName="popWindow";
	}
	window.open(oURL,popName,"left=0,top=0,width="+wwidth+",height="+wheight+",scrollbars=yes,resizable=no,menubar=no,status=no,toolbar=no,location=no");
}
function dataClear(i){
	opener.document.actFrm.applyData1.value='';
	opener.document.actFrm.applyData2.value='';
	opener.document.actFrm.applyData3.value='';
	opener.document.actFrm.applyData4.value='';
	opener.document.actFrm.applyType[i].checked=true;
}


// for Publishing Tool
function OpenWin(URL,WinName,x,y,Menu,cSize,scroll) 
{
	var features;
	
	var nTop = (screen.height - y) / 2 - 30;
	var nLeft = (screen.width - x) / 2;
	
	if (Menu == 0 )
		features = "toolbar=no,width=" + x + ",height=" + y + ",top=" + nTop + ",left=" + nLeft + ",status=no,menubar=no";
	else
		features = "toolbar=no,width=" + (x + 18) + ",height=" + y + ",top=" + nTop + ",left=" + nLeft + ",status=no,menubar=yes";
	
	if (cSize == 0)
		features = features + ",resizable=no";
	else
		features = features + ",resizable=yes";
	
	if (scroll == 0 )
		features = features + ",scrollbars=no";
	else
		features = features + ",scrollbars=yes";
	
	//alert(features);
	
	TheWindow = window.open(URL, WinName, features);
}


//-----------------------------------------------------------------------------------------
// ´Þ·Â ÆË¾÷Ã¢ Ãâ·Â °ü·Ã ÇÔ¼ö
//-----------------------------------------------------------------------------------------
var ns = (document.layers)? true:false;
var ie = (document.all)? true:false;
var doc = (ie)? document.all : document;

function callCalendar(datetime,field){
		dateField = field;
		__showCalendarPanel(datetime,'::');
} 

function __showCalendarPanel(type, param, title, x, y)
{
		if(param == null){
			alert("Javascript:__showCalendarPanel: You must specify the parameter");
			return;
		}
		var separator = ":";
		var pa = param.split(separator);
		
		if(pa.length != 3)	//<= 1 || (pa[0].length <= 0 && pa[1].length <= 0)) 
		{
			alert("Javascript:__showCalendarPanel: You must specify INPUT objects name to be set to local datetime or GMT one");
			return;
		}

		var left = 100;
		var top = 200;
		if(x != null) left = x;
		if(y != null) top = y;
		
		var url = "/common/calendar.asp?type=" + type + "&objLocalDate=" + pa[0] + "&objGMTDate=" + pa[1] + "&initDateTime=" + pa[2] + ( title != null ? "&title=" + title : "");
		var width  = (ie) ? "230":"240";
		if( type == "date" )
			var height = (ie) ? "288":"293";
		else
			var height = (ie) ? "318":"323";
		var ws  = "left=" + left + ",top=" + top + ",menubar = no,width=" + width + ",height=" + height + ",resizable=no,scrollbars=no";
		window.open(url, "__newWin", ws);
}
function setDateTime(local, gmt, type){
	if(type=='date'){
		dateField.value = local.substring(0, 4)
						+ "-" + local.substring(4, 6)
						+ "-" + local.substring(6, 8);
	}
	else{
		dateField.value = local.substring(0, 4)
						+ "-" + local.substring(4, 6)
						+ "-" + local.substring(6, 8)
						+ " " + local.substring(8, 10)
						+ ":" + local.substring(10, 12);
	}

}

function resize_pop() {
	var obj = navigator.appVersion;
	var hei = 29;
	if (navigator.appVersion.indexOf("NT") != -1) {
		os = obj.substr(obj.indexOf("NT"),6);
		if (os > "NT 5.0") {
			hei = 35;
		}
	}
	wid = document.body.scrollWidth+10;
	hei = document.body.scrollHeight+hei+22;
	self.resizeTo(wid,hei);
	this.focus();
}

function login(rurl){
	self.location="/login/login_frm.asp?redirectURL="+escape(rurl);
}

//»õÃ¢ ·Î±×ÀÎ. targetF¿¡ 1À» ÁÖ¸é ·Î±×ÀÎÇÑ »õÃ¢¿¡¼­ ´Ù¸¥ ÆäÀÌÁö·Î ³Ñ¾î°£´Ù. ¾Æ¹« ÀÎÀÚ¸¦ ÁÖÁö ¾ÊÀ¸¸é opener°¡ »õ·Î°íÄ§ µÈ´Ù
//url¿¡ ¾Æ¹«·± ÀÎÀÚ¸¦ ÁÖÁö ¾ÊÀ¸¸é ÆäÀÌÁö¸¦ »õ·Î°íÄ§ ÇÑ´Ù
function loginPop(rurl,targetF){
	if(targetF&&targetF!=""){
		openWinS("/login/login_pop.asp?targetF="+targetF+"&redirectURL="+escape(rurl),400,300,"loginPopup");
	}else{
		openWinS("/login/login_pop.asp?redirectURL="+escape(rurl),400,300,"loginPopup");
	}
}

//Æþ´ç°¡ÀÌµå¸¦ ÅëÇÑ °Ë»ö
//Ãâ¹ßÁö,¸ñÀûÁö,¿©ÇàÅ×¸¶,µ¿¹ÝÀÚÀ¯Çü,¼÷¹ÚÀ¯Çü
//¿©ÇàÅ×¸¶ 1¿©Çà,2·¹Æ÷Ã÷,3ºñÁî´Ï½º,4ÈÞ½Ä
//µ¿¹ÝÀÚÀ¯Çü 1¼Ö·Î,2°¡Á·,3¿¬ÀÎ,4Ä£±¸/µ¿·á
//¼÷¹ÚÀ¯Çü 1´çÀÏ,2¼÷¹Ú
function guideSearch(sVal,eVal,type1,type2,type3){
	alert("Ãâ¹ßÁö:"+sVal+" ¸ñÀûÁö:"+eVal+" ¿©ÇàÅ×¸¶:"+type1+" µ¿¹ÝÀÚ:"+type2+" ¼÷¹ÚÀ¯Çü:"+type3);
}

//XML ¿¬°áÀ» ÅëÇÏ¿© ÇØ´ç ÅØ½ºÆ® µ¥ÀÌÅÍ¸¦ ¹Þ¾Æ¿Â´Ù.
//ÀÚ¹Ù½ºÅ©¸³Æ®·Î ½Ç½Ã°£À¸·Î µ¥ÀÌÅÍ °¡Á®¿Ã¶§ °£´ÜÇÏ°Ô »ç¿ëÇÏÀÚ
function getXMLTextData(src){
	var data;
	var url=src;
	var date=new Date();
	//µ¿ÀÏÇÑ URLÀ» º¸³»¸é Ä³½ÌÀÌ ¸Ô¾î¹ö¸°´Ù. URLÀ» ¹Ù²ãÁÖÀÚ
	if(url.indexOf("?")>=0){
		url+="&timeoffset="+date.getTime();
	}else{
		url+="?timeoffset="+date.getTime();
	}
	if(document.implementation && document.implementation.createDocument){
		// XML º¯¼ö ·Îµù
		xmlReq = new XMLHttpRequest();
		// load the xml file
		xmlReq.open("GET", url, false);
		xmlReq.send(null);
		//totalCount = xmlReq.responseXML.getElementsByTagName("POI").length;
		data=xmlReq.responseText;
		return data;
	}else if(window.ActiveXObject){
		// XML º¯¼ö ·Îµù
		xmlReq = new ActiveXObject("MSXML2.XMLHTTP");
		// Load XML
		xmlReq.open("GET", url, false);
		xmlReq.setRequestHeader("Content-Type","application/x-www-form-urlencoded; charset=euc-kr");
		xmlReq.send(null);
		//totalCount=xmlReq.responseXML.getElementsByTagName("POI").length;
		data=xmlReq.responseText;
		return data;
	}else{
		// Browser unknown
		return "";
	}
}

function copyToClipboard(name,data){
	window.clipboardData.setData("Text",data);
	alert(name+"°¡ º¹»çµÇ¾ú½À´Ï´Ù");
}

function pause(m){	//mµ¿¾È ¸ØÃß±â
	var now=new Date();
	var exitTime=now.getTime()+m;
	while(true){
		now=new Date();
		if(now.getTime()>exitTime)
			return;
	}
}

function ShowProgress(pid) {
	strAppVersion = navigator.appVersion;
				
	if (strAppVersion.indexOf('MSIE') != -1 && strAppVersion.substr(strAppVersion.indexOf('MSIE')+5,1) > 4) {
		winstyle = "dialogWidth=400px; dialogHeight:150px; center:yes";
		window.showModelessDialog("/include/common/upload_progress.asp?Progressid="+pid,null,winstyle);	  
	}
	else {
		winpos = "left=" + ((window.screen.width-380)/2) + ",top=" + ((window.screen.height-110)/2);
		winstyle="width=400,height=150,status=no,toolbar=no,menubar=no,location=no,resizable=no,scrollbars=no,copyhistory=no," + winpos;
		window.open("/include/common/upload_progress.asp?Progressid="+pid,null,winstyle);	     
	}
	return true; 
}

function popDetailImageView(file,width,height){
	openWinS("/include/common/pop_image_detail.asp?file="+file,width+30,height+60,'enlageImageWindow');
}
function popDetailImageViewDesc(file,width,height,desc){
	openWinS("/include/common/pop_image_detail.asp?file="+file+"&desc="+desc,width+30,height+60,'enlageImageWindow');
}

function resizeFrame(Id){
	var obj = document.getElementById(Id);
	var Body;
	var H, Min;
	
	var scroll_height;

	// ÃÖ¼Ò ³ôÀÌ ¼³Á¤ (³Ê¹« ÀÛ¾ÆÁö´Â °ÍÀ» ¹æÁö)
	Min = 500;
	
	// DOM °´Ã¼ ÇÒ´ç
	try{
		if (!document.all && obj.contentWindow.document.location.href == 'about:blank') {
			setTimeout("resizeFrame('"+Id+"')", 10);
			return;
		}
		Body = obj.contentWindow.document.getElementsByTagName('BODY');
		Body = Body[0];
		if (this.Location != obj.contentWindow.document.location.href) {
			H = Body.scrollHeight + 5;
			obj.style.height =  (H<Min?Min:H) + 'px';
			this.Location = obj.contentWindow.document.location.href;
		}
	} catch(e) {
		setTimeout("resizeFrame('"+Id+"')", 10);
		return;
	}
//	setTimeout("resizeFrame('"+Id+"')", 100);

}

//divÅÂ±×¸¸Å­ iframe»çÀÌÁî¸¦ ´Ù½Ã ¼³Á¤ÇÑ´Ù.
function resizeFrame_theme(ifr_id,size_check, size){

	var ifr= document.getElementById(ifr_id) ;
	var innerBody = ifr.contentWindow.document.body;
	var innerHeight = innerBody.scrollHeight + (innerBody.offsetHeight - innerBody.clientHeight);
	//iframeÀÇ heightÀÌ º¯°æµÇ¾ú´Ù¸é ´Ù½Ã height¸¦ ¼³Á¤ÇÑ´Ù.
	if (ifr.style.height != innerHeight) 
	{
			ifr.style.height = innerHeight;
	}

}

function getPageSize(){  
	var xScroll, yScroll;
	
	if (window.innerHeight && window.scrollMaxY) { //firefox. ½ºÅ©·Ñ¹Ù »ý°åÀ»¶§
		xScroll = document.body.scrollWidth-16;
		yScroll = window.innerHeight + window.scrollMaxY;
	} else if (document.body.scrollHeight > document.body.offsetHeight){ // all but Explorer Mac
		xScroll = document.body.scrollWidth;
		yScroll = document.body.scrollHeight;
	} else { // Explorer Mac...would also work in Explorer 6 Strict, Mozilla and Safari
		xScroll = document.body.offsetWidth;
		yScroll = document.body.offsetHeight;
	}

	var windowWidth, windowHeight;
	if (self.innerHeight) { // all except Explorer,firefox
		windowWidth = self.innerWidth-16;
		windowHeight = self.innerHeight;
	} else if (document.documentElement && document.documentElement.clientHeight) { // Explorer 6 Strict Mode
		windowWidth = document.documentElement.clientWidth;
		windowHeight = document.documentElement.clientHeight;
	} else if (document.body) { // other Explorers
		windowWidth = document.body.clientWidth;
		windowHeight = document.body.clientHeight;
	} 
  
	// for small pages with total height less then height of the viewport
	if(yScroll < windowHeight){
		pageHeight = windowHeight;
	} else { 
		pageHeight = yScroll;
	}

	// for small pages with total width less then width of the viewport
	if(xScroll < windowWidth){ //firefox
		pageWidth = windowWidth;
	} else {
		pageWidth = xScroll;
	}

	arrayPageSize = new Array(pageWidth,pageHeight,windowWidth,windowHeight) 
	return arrayPageSize;
}

//³»ÁöÁ¡ ´ã±â È£Ãâ
function addUserPOI(pid,name,xpos,ypos,addr){
	openWinS("/search/poi_add_frm.asp?POI_NAME="+escape(name)+"&XPOS="+xpos+"&YPOS="+ypos+"&PID="+pid+"&ADDRESS="+escape(addr),400,300,'poiAddWindow');
}

//¿£ÅÍ¸¦ ÃÆÀ» °æ¿ì ÁöÁ¤µÈ ÇÔ¼ö(fName)À» ½ÇÇàÇÑ´Ù. ÆÄÀÌ¾îÆø½º Áö¿ø
function enterKeyChk(e,fName){
	var keynum;
	if(window.event){
		keynum=e.keyCode;
	}else if(e.which){
		keynum = e.which;
	}
	if(keynum==13){
		eval(fName);
	}
}

function find_branch(move_page){

	if(move_page == "home")
	{
		top.location.href='/';
	}
	
	else if(move_page == "A_1")
	{
		top.location.href='/dlsearch/new_ddl/introduction/introduction.asp';
	}
	
	else if(move_page == "a_1")
	{
		top.location.href='/dlsearch/new_ddl/introduction/introduction.asp';
	}
	else if(move_page == "a_2")
	{
		top.location.href='/dlsearch/new_ddl/introduction/introduction5.asp';
	}
	else if(move_page == "B_1")
	{
		top.location.href='/dlsearch/DLSearch/TOTWSearchMain.asp?TitleImageName=searchTitleTOT.jpg&MainMenuNo=580&InformYN=N&InformHTML=N&InformTarget=&InformWidth=&InformHeight=&SysKey=SYSTOT&SysDiv=TOT&ViewSysDiv=ÅëÇÕ';
	}
	else if(move_page == "b_1")
	{
		top.location.href='/dlsearch/DLSearch/TOTWSearchMain.asp?TitleImageName=searchTitleTOT.jpg&MainMenuNo=580&InformYN=N&InformHTML=N&InformTarget=&InformWidth=&InformHeight=&SysKey=SYSTOT&SysDiv=TOT&ViewSysDiv=ÅëÇÕ';
	}
	else if(move_page == "b_2")
	{
		top.location.href='/dlsearch/DLSearch/TOTWSearchMain.asp?TitleImageName=searchtitleMON.jpg&MainMenuNo=500&InformYN=N&InformHTML=%20&InformTarget=%20&InformWidth=%20&InformHeight=%20&SysKey=SYS03&SysDiv=MON&ViewSysDiv=´ÜÇàº»';
	}
	else if(move_page == "b_3")
	{
		top.location.href='/dlsearch/DLSearch/TOTWSearchMain.asp?TitleImageName=searchTitleJOR.jpg&MainMenuNo=533&InformYN=N&InformHTML=%20&InformTarget=%20&InformWidth=%20&InformHeight=%20&SysKey=SYS09&SysDiv=INX&ViewSysDiv=±â»ç';
	}
	else if(move_page == "b_4")
	{
		top.location.href='/dlsearch/DLSearch/TOTWSearchMain.asp?TitleImageName=searchTitleDVD.jpg&MainMenuNo=534&InformYN=N&InformHTML=%20&InformTarget=%20&InformWidth=%20&InformHeight=%20&SysKey=SYS07&SysDiv=MUL&ViewSysDiv=¸ÖÆ¼¹Ìµð¾î';
	}
	else if(move_page == "b_5")
	{
		top.location.href='/librarydata/librarydata5.asp';
	}
	else if(move_page == "b_6")
	{
		top.location.href='/dlsearch/new_ddl/librarydata/kyunghee_search.asp';
	}
	else if(move_page == "C_1")
	{
		top.location.href='/dlsearch/new_ddl/homedata/ebook_search.asp';
	}
	else if(move_page == "c_1")
	{
		top.location.href='/dlsearch/new_ddl/homedata/ebook_search.asp';
	}
	else if(move_page == "c_2")
	{
		top.location.href='/dlsearch/new_ddl/homedata/web_search.asp';
	}
	else if(move_page == "c_3")
	{
		//ÀÏ´ÜÀº »ç¿ëÀÚ·Î³Ö¾úÀ½, 
		//if(session_id==""){
		//	alert("·Î±×ÀÎ ÀÌÈÄ¿¡ »ç¿ëÇÏ¼Å¾ß ÇÕ´Ï´Ù.");
		//	top.location.href='/dlsearch/dlservice/login/ComWLogin.asp?mf=Y&pf=N';
		//}
		//else
		//{
		//	window.open('http://www.l4d.or.kr:8085/dong_lib-topicmap/service/user.do?id='+session_id+'&grade=1','topicmap','');
		//}
		//semmina(2);
		top.location.href='/dlsearch/new_ddl/homedata/topicmap.asp';

	}
	else if(move_page == "c_4")
	{
		top.location.href='/dlsearch/new_ddl/homedata/book_movie_search.asp';
	}
	else if(move_page == "c_5")
	{
		//if(session_id=""){
		//	alert("·Î±×ÀÎ ÀÌÈÄ¿¡ »ç¿ëÇÏ¼Å¾ß ÇÕ´Ï´Ù.");
		//	top.location.href='/dlsearch/dlservice/login/ComWLogin.asp?mf=Y&pf=N';
		//}
		//else
		//{
		//	window.open('http://bookseminar.l4d.or.kr/Login_check.asp?user_id=<%=Session("WEB_ID")%>&user_name='+session_name,'bookseminar','');
		//}
		//semmina(1);
		top.location.href='/dlsearch/new_ddl/homedata/book_seminar.asp';
	}
	else if(move_page == "D_1")
	{
		top.location.href='/dlsearch/new_ddl/community/community.asp';
	}
	else if(move_page == "d_1")
	{
		top.location.href='/dlsearch/new_ddl/community/community.asp';
	}
	else if(move_page == "d_2")
	{
		top.location.href='/dlsearch/new_ddl/community/community2.asp';
	}
	else if(move_page == "d_3")
	{
		top.location.href='/dlsearch/new_ddl/community/community3.asp';
	}
	else if(move_page == "E_1")
	{
		top.location.href='/dlsearch/new_ddl/culturepgm/lecture_list.asp?status=1';
	}
	else if(move_page == "e_1")
	{
		top.location.href='/dlsearch/new_ddl/culturepgm/lecture_list.asp?status=1';
	}
	else if(move_page == "e_2")
	{
		top.location.href='/dlsearch/new_ddl/culturepgm/child_list.asp';
	}
	else if(move_page == "e_3")
	{
		top.location.href='/dlsearch/new_ddl/culturepgm/movie_list.asp';
	}
	else if(move_page == "e_4")
	{
		top.location.href='/dlsearch/new_ddl/culturepgm/study_show.asp';
	}
	else if(move_page == "e_5")
	{
		top.location.href='/dlsearch/new_ddl/culturepgm/lend_show.asp';
	}
	else if(move_page == "F_1")
	{
		top.location.href='/dlsearch/new_ddl/board/notice_list.asp';
	}
	else if(move_page == "f_1")
	{
		top.location.href='/dlsearch/new_ddl/board/notice_list.asp';
	}
	else if(move_page == "f_2")
	{
		top.location.href='/dlsearch/new_ddl/board/reference_list.asp';
	}
	else if(move_page == "f_3")
	{
		top.location.href='/dlsearch/new_ddl/board/find_list.asp';
	}
	else if(move_page == "f_4")
	{
		top.location.href='/dlsearch/new_ddl/board/news_list.asp';
	}
	else if(move_page == "f_5")
	{
		top.location.href='/dlsearch/new_ddl/board/sasu_list.asp';
	}
        else if(move_page == "f_6")
	{
		top.location.href='/dlsearch/new_ddl/board/temp_list.asp';
	}   
	
}



