// JavaScript Document
function showBranch()
{
	var branchIndex=document.forms["contact"].elements["CityName"].selectedIndex;
	var branchName=document.forms["contact"].elements["CityName"].options[document.forms["contact"].elements["CityName"].selectedIndex].text;
	if(branchIndex==0)
	{
		alert("Please select a city");
	}
	if(branchIndex>0)
	{
		var branchAddressWindow=window.open(path+"BranchAddress/"+branchName+".htm","BranchAddress","width=388,height=250,scrollbars=yes");
	}
}
function changeBranch()
{
	var branchIndex=document.forms["contact"].elements["CityName"].selectedIndex;
	var branchName=document.forms["contact"].elements["CityName"].options[document.forms["contact"].elements["CityName"].selectedIndex].text;
	if(branchIndex==0)
	{
		alert("Select a City");
	}
	if(branchIndex>0)
	{
		window.open("../BranchAddress/"+branchName+".htm","BranchAddress");
	}
}