// ÇÃ·¡½¬ ¸Þ´º ¸µÅ© TOP
// main : ¸ÞÀÎ¸Þ´º¼ø¹ø
// sub  : ¼­ºê¸Þ´º¼ø¹ø

function FlashLink(main,sub){
var FLink = new Array();

FLink = [
		[ //a_site : 11
			"/introduction.html",	// È¸»ç¼Ò°³
			"/introduction.html",	// 1 INTRODUCTION
			"/vision.html",	// 2 VISION 
			"/history.html",	// 3 HISTORY
			"/organization.html",	// 4 ORGANIZATION 
			"/fsbClient/ezboard.jsp?bm_seq=19534",	// 5 NEWS&ARTICLES
			"/certificate.html",    // 6 certificate
					
		],

		[ //a_site : 21
			"/professional_list.html",	 // 1 professional_list
			"/professional_list.html",    // 1			
			"/professional-breathalyzer-da-9000.html",	     // 2 DA-9000
			"/fuel-cell-breathalyzer-da-8700usb.html",   // 3 DA-8700USB
			"/alcohol-tester-da-8500.html",   // 4 DA-8500
			"/alcohol-detector-da-8000.html",   // 5 DA-8000
			"/alcohol-meter-da-8100.html",   // 6 DA-8100
			"/breath-tester-da-7100.html",   // 7 DA-7100
			"/alcohol-screener-da-7000.html",    // 8 DA-7000 
			"/breath-analyzer-da-5000.html",   // 9 DA-5000
			"/alcohol-testers-da-3000.html",   // 10 DA-3000
			"/breathalyzer-mouthpiece.html",    // 11 MOUTHPIECE
			"/personal_list.html",    // 12 personal_list
			
		],

		[ //a_site : 31
			"/about-breathalyzer.html",	// 1 ABOUT BREATHALYZER
			"/about-breathalyzer.html",    // 1 ABOUT BREATHALYZER
			"/breathalyzer-calibration.html",    // 2 CALIBRATION
			"/fsbClient/ezboard.jsp?bm_seq=19535",    // 3 DOWNLOAD
			
		],

		[ //a_site : 41
			"/breathalyser-sensor-tech.html",		// 1 RESEARCH
			"/breathalyser-sensor-tech.html",		// 
			"/da-tech-patents.html",      // 2 PATENTS
			"/fuel-cell-semiconductor-sensor.html",      // 3 SENSOR COMPARISON
		],

		[ //a_site : 51			
			"/contact.html",
			"/contact.html",
		],	
		
		
	];
		
top.window.location.href = FLink[main-1][sub];
}

// ÅëÇÕ¸Þ´º
function all(main){
var FLink = new Array();
FLink = [
			"/index.html", // 1 home
			"http://www.gobizkorea.com/",  //2 gobiz
			"/sitemap.html", //3 sitemap
			"http://kr.gobizkorea.com/popup/newhm_pop_inquiry.jsp?co_code=2007-00143&co_lang=2",//4 inquiry_en
			"http://www.datech.co.kr/index.html", // 5 korean	
			"/fsbClient/ezboard.jsp?bm_seq=19535", // 6 download
			"http://kotraseal.kotra.or.kr/excellence/eng/content/01.jsp?menu_id=en_brand_02", // 7 ÄÚÆ®¶ó

			

		];

	if(main== "2" || main== "4" || main== "7" ) {
		top.window.open(FLink[main-1]);
	}else{
		parent.window.location.href = FLink[main-1];
	}
};

