// 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("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");
	}
}
function showskybox()
{
	var placeIndex=document.forms["contact"].elements["PlaceName"].selectedIndex;
	var placeName=document.forms["contact"].elements["PlaceName"].options[document.forms["contact"].elements["PlaceName"].selectedIndex].text;
	//alert(placeName);
	if(placeIndex==0)
	{
		alert("Select a State");
	}
	if(placeIndex>0)
	{
		
		window.open("http://210.210.20.55/ULNAV/funds/skyPak.jsp?flag=city&state=" + placeName);

	}
	
	
}

function showBranch1()
{
	
		var branchAddressWindow=window.open("BranchAddress/BranchAddress.asp","BranchAddress","width=388,height=250,scrollbars=yes");
	
}