<!--º»ºÎ ¹× ¼Ò¼Ó±â°ü ¸µÅ©  ¹× °ü·Ã»çÀÌÆ® ¸µÅ© -->
function goURL(sel, targetstr){  
	var index = sel.selectedIndex;  

	if (sel.options[index].value != '') {			
		if (targetstr == 'blank') {       
			window.open(sel.options[index].value, 'win1');		}
		else{				
			var frameobj;
			if ((frameobj = eval(targetstr)) != null)
			frameobj.location = sel.options[index].value;		}
	}
}

<!-- ¿ÞÂÊ ÆäÀÌÁö ¹Ù·Ï°¡½Ã ¸µÅ© -->

function MM_jumpMenu(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}

function MM_jumpMenu1(targ,selObj,restore){ //v3.0
		  var frmValue = selObj.options[selObj.selectedIndex].value;
		  //alert(frmValue);
		  var locationValue;
		  
		  if(frmValue=="1"){
				locationValue = "index.html";
		  }else if(frmValue=="2"){
				locationValue = "./index1.html";
		  }else if(frmValue=="3"){
				locationValue = "./index2.html";
		  }else if(frmValue=="4"){
				locationValue = "./index3.html";
		  }
		  
		  //eval(targ+".location='"+locationValue+"'");
		  location.href=locationValue;
		  if (restore) selObj.selectedIndex=0;
	}
