function locator(location){

	img = document.getElementById('branchimage');
	if(location =="wgt") {
		img.src = "/resources/images/branchWGT.gif";
	} else if(location =="ak") {
		img.src = "/resources/images/branchAK.gif";
	} else if(location =="chch") {
		img.src = "/resources/images/branchSI.gif";
	}
	else if(location =="ham") {
		img.src = "/resources/images/branchHAM.gif";
	}else if(location =="hb") {
		img.src = "/resources/images/branchHB.gif";
	}else if(location =="nn") {
		img.src = "/resources/images/branchNN.gif";
	}else if(location =="dun") {
		img.src = "/resources/images/branchDUN.gif";
	} else  {
		img.src = "/resources/images/branch.gif";
	}
}