// JavaScript Document
function gotoURL(thisM , thisSubM , keyword){

	switch (thisM){
		case 0 : //"logo":
			url = "main.jsp";
			break;
		case 1 : //"etudeStory":
			switch (thisSubM){
				case 1:
					url = "etudeStory/etudeHouse.jsp";
					break;
				case 2:
					url = "etudeStory/etudeHistory.jsp";
					break;
				case 3:
					url = "etudeStory/etudeOnAir.jsp";
					break;
			}
			break;
		case 2 : //"bestNew":
		
		
			switch (thisSubM){
				case 1:
					url = "bestNew/bestEtude.jsp";
					break;
				case 2:
					url = "bestNew/newEtude.jsp";
					break;
			}

			break;
		case 3 : //"customerService":
			url = "customerService/notice.jsp?typ=" + thisSubM;
			break;
		case 4 : //"storeLocation":
			url = "storeLocation/storeLocation.jsp";
			break;
		case 5 : //"sitemap":
			url = "etc/sitemap.jsp";
			break;
		case 6 : //"joinMailing":
			url = "etc/joinMailing.jsp";
			break;
		case 7 : //"contactus":
			url = "etc/contactus.jsp";
			break;
			
		case 8 : //"search":
			url = "etc/search.jsp?keyword=" + keyword;
			break;
			
		case 9 : //"product1":
		case 10: //"product2":
		case 11: //"product3":
		case 12: //"product4":
		case 13: //"product5":
		case 14: //"product6":
		case 15: //"product7":

		
			url = "product/product_list.jsp?typ=" + thisM + "&subTyp=" + thisSubM;
			break;
	}
	
	//alert(url);
	self.location.href = '/jpn/' + url;
}
