function flowURL(lev1, lev2) {
	targetURL = "";
	lev1 = parseInt(lev1);
	lev2 = parseInt(lev2);
	switch(lev1) {
		// ¸Þ´º ¿Ü ¸µÅ©
		case 0:
			switch(lev2) {
				case 0:
					targetURL = "/index.asp";
					break;
			}
			break;
		// About Dong-Ah
		case 1:
			//alert(lev2);
			switch(lev2) {
				case 0 :
					targetURL = "/about/?kind=mission";
					break;
				case 1 :
					targetURL = "/about/?kind=history";
					break;
				case 2 :
					targetURL = "/about/?kind=chairman";
					break;
				case 3 :
					targetURL = "/about/?kind=president";
					break;
				case 4 :
					targetURL = "/about/?kind=chart";
					break;
				case 5 :
					targetURL = "/about/?kind=tour";
					break;
				case 6 :
					targetURL = "/about/?kind=address";
					break;
				case 7 :
					targetURL = "/about/?kind=2009";
					break;
				case 8 :
					targetURL = "/about/?kind=2009";
					break;
				case 9 :
					targetURL = "/about/?kind=2010";
					break;
				case 10 :
					targetURL = "/about/?kind=inter";
					break;
			}
			break;
		// Academice
		case 2:
			switch(lev2) {
			 	case 0:
					targetURL = "/academics/?kind=11";
					break;
				case 1:
			 		targetURL = "/academics/?kind=11";
					break;
				case 2:
			 		targetURL = "/academics/?kind=21";
					break;
				case 3:
			 		targetURL = "/academics/?kind=31";
					break;
				case 4:
			 		targetURL = "/academics/?kind=41";
					break;
				case 5:
			 		targetURL = "/academics/?kind=51";
					break;
				}
			break;
		// Admissions
		case 3:
			switch(lev2) {
				case 0:
					targetURL = "/admissions/";
					break;
				case 1:
					targetURL = "/admissions/";
				    break;
				case 2:
					targetURL = "/admissions/";
				    break;
				}
			break;
		// Student
		case 4:
			switch(lev2) {
			 	case 0:
					targetURL = "/student/?kind=office";
					break;
				case 1:
					targetURL = "/student/?kind=life";
					break;
				case 2:
					targetURL = "/student/?kind=life";
					break;
			}
			break;
		// Life
		case 5:
			switch(lev2) {
				case 0:
					targetURL = "/life/";
					break;
				case 1:
					targetURL = "/life/";
					break;
				case 2:
					targetURL = "/life/";
					break;
			}
			break;
		// Community
		case 6:
			switch(lev2) {
				case 0:
					targetURL = "/community/sub01.asp";
					break;
				case 1:
					targetURL = "/community/sub02.asp";
					break;
				case 2:
					targetURL = "/community/sub03.asp";
					break;
			}
			break;
		}
	if(targetURL!=""){location.href= targetURL;}
}