function locations(city)
{
	var newWindow;
	var location = new Array();
	location[0] = "/Pages/Locations.aspx#Bellevue";
	location[1] = "/Pages/Locations.aspx#New York";
	location[2] = "/Pages/Locations.aspx#Portland";
	if ( city == "Seattle" )
	{
		newWindow = window.open(location[0],'Bellevue','width=600,resizable=0,height=325,menubar=0,location=0,status=0,toolbar=0,left=450,top=300');
		newWindow.focus();
	}
	else if (city == "New York" )
	{
		newWindow = window.open(location[1],'NYC','width=575,height=200,resizable=0,menubar=0,location=0,status=0,toolbar=0,left=450,top=300');
		newWindow.focus();
	}
	//Portland no longer an office - mv 4/2/2007
	//else if ( city == "Portland" )
	//{
	//	newWindow = window.open(location[2],'Portland','width=600,height=330,resizable=0,menubar=0,location=0,status=0,toolbar=0,left=450,top=300');
	//	newWindow.focus();
	//}
}
window.onload=locations;