function quick_link(val)
{
	  //alert("val=="+val);
	  var url;
	  switch (val)
	  {
		case "1":
			url = "menu1_07_4.html"; //µ¿¿µ»óº¸±â
			break;
		case "2":
			url = "menu1_07_4.php"; //±â»ç¸ðÀ½
			break;
		case "3":
			url = "menu2_01.html";  //¸ðÁý¿ä°­
			break;
		case "4":
			url = "menu2_04.php";  //¿¹¾àÇÏ±â
			break;
		case "5":
			url = "./score/score_student_write.php";  //¼ºÀû»êÃâÇÏ±â
		    quick_score_move(url,'scorewin', 0, 0, 700, 600, 0, 0, 0, 1, 1);
			break;
		case "6":
			url = "menu2_07.php";//ÀüÆíÀÔ½ÅÃ»
			break;
		case "7":
			url = "menu1_08_5.html";//´ëÀÔÇöÈ²
			break;
		case "8":
			url = "./eduinfo_search.php";  //±³À°Á¤º¸°Ë»ö
		    quick_score_move(url,'eduwin', 0, 0, 400, 200, 0, 0, 0, 1, 1);
			break;
		default:
			url = "main.php";
			break;
	  }
	  
	  if(val != "5" && val != "8"){
		  location.href = url;
	  }
}

function quick_score_move(sUrl, name, left, top, width, height, toolbar, menubar, statusbar, scrollbar, resizable)
{
  toolbar_str = toolbar ? 'yes' : 'no';
  menubar_str = menubar ? 'yes' : 'no';
  statusbar_str = statusbar ? 'yes' : 'no';
  scrollbar_str = scrollbar ? 'yes' : 'no';
  resizable_str = resizable ? 'yes' : 'no';
  var url = sUrl;
  //alert("Áö±ÝÀº ÇÁ·Î±×·¥ Å×½ºÆ®ÁßÀÔ´Ï´Ù.");
  window.open(url, name, 'left='+left+',top='+top+',width='+width+',height='+height+',toolbar='+toolbar_str+',menubar='+menubar_str+',status='+statusbar_str+',scrollbars='+scrollbar_str+',resizable='+resizable_str);
}