// 각페이지 경로
function gf_goUrl( pUrl ) {
 switch(pUrl) {
		
  
case "main"  : location.href="/index.html"; break;
//MAIN_MENU
case "1"  : location.href="/products/products_main.php"; break;
case "2"  : location.href="/applications/applications_main.php"; break;
case "3"  : location.href="/support/support_main.php"; break;  
case "4"  : location.href="/about_us/about_us_main.php"; break;
case "5"  : location.href="/contact/contact_main.php"; break;
case "6"  : location.href="/investors_news/investors_news_main.php"; break;


//MAIN_SUB_01:product
case "1_1"  : location.href="/products/analog_sensor.php"; break;
case "1_2"  : location.href="/products/digital_sensor.php"; break;
case "1_3"  : location.href="/products/medical_sensor.php"; break;
case "1_4"  : location.href="/products/companion_chip.php"; break;  
case "1_5"  : location.href="/products/system_on_a_chip.php"; break;
case "1_6"  : location.href="/products/demo_kit_set.php"; break;
case "1_7"  : location.href="/products/technology.php"; break;

//MAIN_SUB_02:application
case "2_1"  : location.href="/applications/security_surveillance.php"; break;
case "2_2"  : location.href="/applications/automotive_imaging.php"; break;
case "2_3"  : location.href="/applications/medical_imaging.php"; break;
case "2_4"  : location.href="/applications/notebook_webcams.php"; break;
case "2_5"  : location.href="/applications/toy_entertainment.php"; break;
case "2_6"  : location.href="/applications/mobile_phones.php"; break;
case "2_7"  : location.href="/applications/biometric_solutions.php"; break;
case "2_8"  : location.href="/applications/others.php"; break;

//MAIN_SUB_03:support
case "3_1"  : location.href="/support/technical_support.php"; break;
case "3_2"  : location.href="/support/documentation.php"; break;
case "3_3"  : location.href="/support/faq.php"; break;

//MAIN_SUB_04:aboutus
case "4_1"  : location.href="/about_us/overview.php"; break;
case "4_2"  : location.href="/about_us/ceo_message.php"; break;
case "4_3"  : location.href="/about_us/history.php"; break;
case "4_4"  : location.href="/about_us/philosophy.php"; break;
	case "4_4_1"  : location.href="/about_us/philosophy_01.php"; break;
	case "4_4_2"  : location.href="/about_us/philosophy_02.php"; break;
case "4_5"  : location.href="/about_us/career.php"; break;
	case "4_5_1"  : location.href="/about_us/career_01.php"; break;
	case "4_5_2"  : location.href="/about_us/career_02.php"; break;
	case "4_5_3"  : location.href="/about_us/career_03.php"; break;
	case "4_5_4"  : location.href="/about_us/career_04.php"; break;
	case "4_5_5"  : location.href="/about_us/career_05.php"; break;
	case "4_5_6"  : location.href="/about_us/career_06.php"; break;
case "4_6"  : location.href="/about_us/iso_certificate.php"; break;
case "4_7"  : location.href="/about_us/awards.php"; break;


//MAIN_SUB_05:contact
case "5_1"  : location.href="/contact/global_networks.php"; break;
case "5_2"  : location.href="/contact/sales_contact.php"; break;
case "5_3"  : location.href="/contact/location.php"; break;


//MAIN_SUB_06:investers&news
case "6_1"  : location.href="/investors_news/ir.php"; break;
case "6_2"  : location.href="/investors_news/news_event.php"; break;



	}
}
function language( lan_Url ) {
 switch(lan_Url) {
case "1"  : location.href="/index.html"; break;
case "2"  : location.href="/kor/index.html"; break;
case "3"  : location.href="/chn/index.html"; break;  
	}
}


// =================================================
// 이미지 점선 없애기
// =================================================

function bluring(){ 
if(event.srcElement.tagName=="A"||event.srcElement.tagName=="IMG") document.body.focus(); 
} 
document.onfocusin=bluring; 
