

	// ÇÃ·¡½¬ ¸Þ´º ¸µÅ©
	// main : ¸ÞÀÎ¸Þ´º¼ø¹ø
	// sub  : ¼­ºê¸Þ´º¼ø¹ø
	function FlashLink(main,sub){
		var FLink = new Array();
		FLink = [
					[
						"/contents/about/greeting.html?sm=1_1",//½ºÄð¼Ò°³
		                "/contents/about/greeting.html?sm=1_1",//ÀÎ»ç¸»
						"/contents/about/instructors.html?sm=1_2",//°­»ç¾È³»
						"/contents/about/studio.html?sm=1_3",//°­»ç¾È³»
						
				      ],

					[
						"/contents/program1/program.html?sm=2_1",//Á¤±ÔÇÁ·Î±×·¥
						"/contents/program1/program.html?sm=2_1",//ÇÁ·Î±×·¥
						"/contents/program1/schedule.html?sm=2_2",//½Ã°£Ç¥
					],

					[
						"/contents/program2/raja.html?sm=3_1",//Àü¹®ÇÁ·Î±×·¥
						"/contents/program2/raja.html?sm=3_1",//¶óÀÚ¿ä°¡
						"/contents/program2/program.html?sm=3_2",//ÇÁ·Î±×·¥
						"/contents/program2/curriculum.html?sm=3_3",//Ä¿¸®Å§·³
					],
					
					[
						"/contents/faq/faq.html?sm=4_1",//FAQ
						"/contents/faq/faq.html?sm=4_1",//
					],


					[
						"/contents/map/map.html?sm=5_1",//¿À½Ã´Â±æ
						"/contents/map/map.html?sm=5_1",//¿À½Ã´Â±æ

					],
										

				];
		
		if(main ==10 && sub ==4) {    //
			window.open(FLink[main-1][sub]);
		}
		else {
			window.location.href = FLink[main-1][sub];
		}
	}





function FlashLinkEN(main,sub){
		var FLink = new Array();
		FLink = [
					[
						"/en/contents/about/greeting.html?sm=1_1",//½ºÄð¼Ò°³
		                "/en/contents/about/greeting.html?sm=1_1",//ÀÎ»ç¸»
						"/en/contents/about/instructors.html?sm=1_2",//°­»ç¾È³»
						"/en/contents/about/studio.html?sm=1_3",//°­»ç¾È³»
						
				      ],

					[
						"/en/contents/program1/program.html?sm=2_1",//Á¤±ÔÇÁ·Î±×·¥
						"/en/contents/program1/program.html?sm=2_1",//ÇÁ·Î±×·¥
						"/en/contents/program1/schedule.html?sm=2_2",//½Ã°£Ç¥
					],

					[
						"/en/contents/program2/raja.html?sm=3_1",//Àü¹®ÇÁ·Î±×·¥
						"/en/contents/program2/raja.html?sm=3_1",//¶óÀÚ¿ä°¡
						"/en/contents/program2/program.html?sm=3_2",//ÇÁ·Î±×·¥
						"/en/contents/program2/curriculum.html?sm=3_3",//Ä¿¸®Å§·³
					],
					
					[
						"/en/contents/faq/faq.html?sm=4_1",//FAQ
						"/en/contents/faq/faq.html?sm=4_1",//
					],


					[
						"/en/contents/map/map.html?sm=5_1",//¿À½Ã´Â±æ
						"/en/contents/map/map.html?sm=5_1",//¿À½Ã´Â±æ
					],
										

				];
		
		if(main ==10 && sub ==4) {    //
			window.open(FLink[main-1][sub]);
		}
		else {
			window.location.href = FLink[main-1][sub];
		}
	}






