// JavaScript Document
/*
function findBranch(branch) {
 		window.location = 'contactus.php#' + branch;
}
*/
function findBranch()
{
	var box = document.getElementById('navi');
	var boxIndex = box.selectedIndex;

	/*box = document.forms[0].navi;*/
	var destination = box.options[boxIndex].value;
	if (destination) location.href = destination;
}
