﻿/* region 콤보박스(셀렉트 박스가 아닐경우)
function show_contact(){
	if(!document.getElementById("contact_area")) return false;
	if(!document.getElementById("Region")) return false;
	var Region = document.getElementById("Region");
	var contact_list = document.getElementById("contact_area");
	if(navigator.appName != "Microsoft Internet Explorer"){
		var getHeight = document.defaultView.getComputedStyle(contact_list,null).height;
		if(contact_list.style.display == ""){
			contact_list.parentNode.style.height = "103px";
		}else{
			contact_list.parentNode.style.height = "auto";
		}
	}
	if(contact_list.style.display == ""){
		contact_list.style.display = "block";
	}else{
		contact_list.style.display = "";
	}
}
*/

function mailTo(){	 //컨텍어스 메일 보내는 셀렉트 박스
	var region = document.getElementById("region");
	var option = region.getElementsByTagName("option");
	if(option[1].selected){
		location.href = "mailto:namyeol.ko@doosan.com";
	}
	if(option[2].selected){
		location.href = "mailto:nikki.bruce@doosan.com";
	}
	if(option[3].selected){
		location.href = "mailto:shujuan.wang@doosan.com";
	}
}
