
function menu(mnum,Str) {
	var locationStr = "";
    switch (mnum) {
	    //¸ÞÀÎÆäÀÌÁö
		case 0:
			locationStr="../main/main.asp";
			break;

//Movie
		case 11:
		    locationStr="../movie/list.asp";
			break;
		case 12:
			locationStr="../movie/news.asp";
			break;	
		case 13:
		    locationStr="../movie/synopsis.asp";
			break;	
		case 14:
		    locationStr="../movie/cast.asp";
			break;	
		case 15:
		    locationStr="../movie/gallery.asp";
			break;	
		case 16:
		    locationStr="../movie/multimedia.asp";
			break;		
		
//Star
	    case 21:
		    locationStr="../star/stars_l.asp";
			break;
		case 22:
			locationStr="../star/news.asp";
		    //locationStr="../star/list.asp";
			break;
		case 23:
		    locationStr="../star/stars_V.asp";
			break;
		case 24:
		    locationStr="../star/gallery.asp";
			break;
			
//Musical
		case 31:
			locationStr="../musical/list.asp";    
			break;
		case 32:
			locationStr="../musical/news.asp";    
			break;	
		case 33:
		    locationStr="../musical/synopsis.asp";
			break;	
		case 34:
		    locationStr="../musical/cast.asp";
			break;	
		case 35:
		    locationStr="../musical/gallery.asp";
			break;	
		case 36:
		    locationStr="../musical/multimedia.asp";
			break;	
	
//Company
		case 41:
		     locationStr="../company/ceo.asp";
			break;	
		case 42:
		     locationStr="../company/identity.asp";
			break;	
		case 43:
		     locationStr="../company/history.asp";
			break;	
		case 44:
		     locationStr="../company/organization.asp";
			break;	
		case 45:
		     locationStr="../company/business1.asp";
			break;	
		case 46:
		     locationStr="../company/business2.asp";
			break;	
		case 47:
		     locationStr="../company/business3.asp";
			break;
		case 48:
		     locationStr="../company/contact.asp";
			break;	
	
//Community
		case 51:
		     locationStr="../community/qna.asp";
			break;	
		case 52:
		     locationStr="../community/scenario.asp";
			break;	
		case 53:
		     locationStr="../community/audition.asp";
			break;
		case 54:
		     locationStr="../community/audition1.asp";
			break;	
		case 55:
		     locationStr="../community/audition2.asp";
			break;
		case 56:
		     locationStr="../community/qna_view.asp";
			break;
		case 57:
		     locationStr="../community/qna_write.asp";
			break;
		case 58:
		     locationStr="../community/qna_pass.asp";
			break;
	
//Sitemap
		case 61:
		     locationStr="../sitemap/sitemap.asp";
			break;		

//ÇÑ±¹¾î
		case 71:
		    locationStr="/main/main.asp";
			break;
//¿µ¾î
		case 72:
		    locationStr="http://english.kmculture.com/index.html";
			top.location.href = locationStr ;
			return;
			break;

	}
	if (locationStr != "")
	{
		location.href = locationStr + ((Str == null)  ? "" : "?" + Str );
	}
}

