// JavaScript Document
function submitform()
{
	strCity = document.frmSelectChamber.cboMapCities.value
	
	if (strCity.indexOf("txNWHouston") > 0)
		{
			//window.location.href='http://maps.usachamber.com/mapV4.asp?' + strCity;
			window.open('http://maps.usachamber.com/mapV4.asp?' + strCity, '_blank', 'resizeable=yes');
		}
	else
		{
			//window.location.href='http://maps.usachamber.com/mapV3.asp?' + strCity;
			window.open('http://maps.usachamber.com/mapV3.asp?' + strCity, '_blank', 'resizeable=yes');
		}
}