function openContactWin(url)  {
    var win = window.open(url,"displayWindow",'width=600,height=700,resizable=no,scrollbars=yes,menubar=no,status=no,locationbar=no' );
}
function switchToAdvancedSearch() {
	document.getElementById('simpleSearch').style.display = "none";
	document.getElementById('advSearch').style.display = "block";
}
function switchToSimpleSearch() {
	document.getElementById('simpleSearch').style.display = "block";
	document.getElementById('advSearch').style.display = "none";
}

function doSortHitlistByBranch(hitlistUrl, elemSelect) {
	var sort = elemSelect.options[elemSelect.options.selectedIndex].value;
	if (sort != null) {
		if (sort != "---" && (sort == 'asc' || sort == 'desc')) {
			hitlistUrl += "&sort=" + sort;
		}
		window.location.href = hitlistUrl;
	} 
}

function doFilterHitlistByBranch(hitlistUrl, elemSelect) {
	var busi = elemSelect.options[elemSelect.options.selectedIndex].value;
	if (busi != null && busi != "" && busi != "---") {
		hitlistUrl += "&busi=" + busi;
		window.location.href = hitlistUrl;
	} else if (busi != null && busi == "---") {
		window.location.href = hitlistUrl;
	}
}

function switchMap() {
	if (document.getElementById('detail_map').style.display != 'block') {
		document.getElementById('detail_map').style.display = 'block';
		if (document.getElementById('detail_video') != null) 
			document.getElementById('detail_video').style.display = 'none';
		if (document.getElementById('detail_gallery') != null) 
			document.getElementById('detail_gallery').style.display = 'none';
	} else {
		document.getElementById('detail_map').style.display = 'none';
	}
}

function switchVideo() {
	if (document.getElementById('detail_video').style.display != 'block') {
		document.getElementById('detail_map').style.display = 'none';
		if (document.getElementById('detail_gallery') != null) 
			document.getElementById('detail_gallery').style.display = 'none';
		document.getElementById('detail_video').style.display = 'block';
	} else {
		document.getElementById('detail_video').style.display = 'none';
	}
}

function switchGallery() {
	if (document.getElementById('detail_gallery').style.display != 'block') {		
		document.getElementById('detail_gallery').style.display = 'block';
		document.getElementById('detail_map').style.display = 'none';
		if (document.getElementById('detail_video') != null) 
			document.getElementById('detail_video').style.display = 'none';
	} else {
		document.getElementById('detail_gallery').style.display = 'none';
	}
}


