function mapval(Abbr)
	{
		switch (Abbr)
		{
			case "AL" :
				window.location.href = "alabama.html" ;
				break ;
			case "AK" :
				window.location.href = "alaska.html" ;
				break ;			
			case "AZ" :
				window.location.href = "arizona.html" ;
				break ;
			case "AR" :
				window.location.href = "arkansas.html" ;
				break ;
			case "CA" :
				window.location.href = "california.html" ;
				break ;
			case "CO" :
				window.location.href = "colorado.html" ;
				break ;
			case "CT" :
				window.location.href = "connecticut.html" ;
				break ;
			case "DE" :
				window.location.href = "delaware.html" ;
				break ;
			case "DC" :
				window.location.href = "dc.html" ;
				break ;			
			case "FL" :
				window.location.href = "florida.html" ;
				break ;
			case "GA" :
				window.location.href = "georgia.html" ;
				break ;			
			case "HI" :
				window.location.href = "hawaii.html" ;
				break ;
			case "ID" :
				window.location.href = "idaho.html" ;
				break ;
			case "IL" :
				window.location.href = "illinois.html" ;
				break ;
			case "IN" :
				window.location.href = "indiana.html" ;
				break ;
			case "IA" :
				window.location.href = "iowa.html" ;
				break ;
			case "KS" :
				window.location.href = "kansas.html" ;
				break ;
			case "KY" :
				window.location.href = "kentucky.html" ;
				break ;
			case "LA" :
				window.location.href = "louisiana.html" ;
				break ;
			case "ME" :
				window.location.href = "maine.html" ;
				break ;			
			case "MD" :
				window.location.href = "maryland.html" ;
				break ;
			case "MA" :
				window.location.href = "massachusetts.html" ;
				break ;
			case "MI" :
				window.location.href = "michigan.html" ;
				break ;
			case "MN" :
				window.location.href = "minnesota.html" ;
				break ;
			case "MS" :
				window.location.href = "mississippi.html" ;
				break ;
			case "MO" :
				window.location.href = "missouri.html" ;
				break ;
			case "MT" :
				window.location.href = "montana.html" ;
				break ;
			case "NE" :
				window.location.href = "nebraska.html" ;
				break ;
			case "NV" :
				window.location.href = "nevada.html" ;
				break ;
			case "NH" :
				window.location.href = "newhampshire.html" ;
				break ;
			case "NJ" :
				window.location.href = "newjersey.html" ;
				break ;
			case "NM" :
				window.location.href = "newmexico.html" ;
				break ;
			case "NY" :
				window.location.href = "newyork.html" ;
				break ;
			case "NC" :
				window.location.href = "northcarolina.html" ;
				break ;
			case "ND" :
				window.location.href = "northdakota.html" ;
				break ;			
			case "OH" :
				window.location.href = "ohio.html" ;
				break ;
			case "OK" :
				window.location.href = "oklahoma.html" ;
				break ;
			case "OR" :
				window.location.href = "oregon.html" ;
				break ;			
			case "PA" :
				window.location.href = "pennsylvania.html" ;
				break ;			
			case "RI" :
				window.location.href = "rhodeisland.html" ;
				break ;
			case "SC" :
				window.location.href = "southcarolina.html" ;
				break ;
			case "SD" :
				window.location.href = "southdakota.html" ;
				break ;
			case "TN" :
				window.location.href = "tennessee.html" ;
				break ;
			case "TX" :
				window.location.href = "texas.html" ;
				break ;
			case "UT" :
				window.location.href = "utah.html" ;
				break ;
			case "VT" :
				window.location.href = "vermont.html" ;
				break ;			
			case "VA" :
				window.location.href = "virginia.html" ;
				break ;
			case "WA" :
				window.location.href = "washington.html" ;
				break ;
			case "WV" :
				window.location.href = "westvirginia.html" ;
				break ;
			case "WI" :
				window.location.href = "wisconsin.html" ;
				break ;
			case "WY" :
				window.location.href = "wyoming.html" ;
				break ;
		}
	}
function Redirect (selSelectObject)
{
   if (selSelectObject.options[selSelectObject.selectedIndex].value != "")
   {
     location.href=selSelectObject.options[selSelectObject.selectedIndex].value
   }
}
