var us_states = [ "AL","AK","AP","AZ","AR","CA","CO","CT","DE","DC","FL","GA","HI","ID","IL",
	      		  "IN","IA","KS","KY","LA","ME","MD","MA","MI","MN","MS","MO","MT","NE","NV",
	      		  "NH","NJ","NM","NY","NC","ND","OH","OK","OR","PA","RI","SC","SD","TN","TX",
	      		  "UT","VT","VA","WA","WI","WV", "WI","WY" ];
var ca_prov = [ "AB","BC","LB","MB","NB","NL","NWT","NS","NU","ON","PI","PE","QC","SK","YT" ];
var misc = [ "AS", "GU", "FM", "MH", "MP", "PW", "PR", "VI" ];
var topCities = ["amsterdam::NL","columbus:OH:US","lake buena vista:FL:US","ottawa:ON:CA","san francisco:CA:US","anaheim:CA:US","costa mesa:CA:US","london::GB","palo alto:CA:US","scottsdale:AZ:US","arlington:VA:US","dallas:TX:US","los angeles:CA:US","pasadena:CA:US","seattle:WA:US","atlanta:GA:US","denver:CO:US","montreal:QC:CA","philadelphia:PA:US","st. louis:MO:US","baltimore:MD:US","fort lauderdale:FL:US","munich::DE","pittsburgh:PA:US","stamford:CT:US","bangkok::TH","frankfurt::DE","new orleans:LA:US","portland:ME:US","sunnyvale:CA:US","boston:MA:US","honolulu, island of oahu:HI:US","honolulu:HI:US","new york:NY:US","richmond:VA:US","sydney::AU","calgary:AB:CA","houston:TX:US","newark:NJ:US","rosemont:IL:US","toronto:ON:CA","chicago:IL:US","indianapolis:IN:US","niagara falls:NY:US","san antonio:TX:US","vancouver:BC:CA","cincinnati:OH:US","kansas city:MO:US","orlando:FL:US","san diego:CA:US:","washington:DC:US"]
var stateProvinceAutoSet = true;
var countryAutoSet = true;
var searchForm = new WebForm();

function stateProvince_onChange() {
	c = false;
	if(isIn(document.searchForm.stateProvince.value,us_states)) {
		c = "US";
	} else if(isIn(document.searchForm.stateProvince.value,ca_prov)) {
		c = "CA";
	} else if(isIn(document.searchForm.stateProvince.value,misc)) {
		c = "US";
	}
	if (c != false) {
		setDropDown(c,document.searchForm.countryCode);
	}
	country_onChange();
	stateProvinceAutoSet = false;
}
function country_onChange() {
	var f = document.searchForm;
	if (f.searchType.value=="address") {
		setDropDown("US",document.searchForm.countryCode);
	}
	if ((f.countryCode[f.countryCode.selectedIndex].value != "US") && (f.countryCode[f.countryCode.selectedIndex].value != "CA")) {
		setDropDown("",document.searchForm.stateProvince);
	}
//	if (f.countryCode[f.countryCode.selectedIndex].value == "US") {
//		f.rateRange.disabled = false;
//	} else {
//		f.rateRange.disabled = true;
//		f.rateRange.selectedIndex = 0;
//	}
	stateProvinceAutoSet = false;
	countryAutoSet = false;
}


function countryOnChange(){
     var f = document.searchForm;
   if (f.searchType.value=="address") {
       setDropDown("US",document.searchForm.country);
   }
   if ((f.countryCode[f.countryCode.selectedIndex].value != "US") && (f.countryCode[f.countryCode.selectedIndex].value != "CA")) {
       setDropDown("",document.searchForm.stateProvince);
   }
   }
function setDropDown(v,dd) {
	for (i = 0; i < dd.options.length - 1; i++ ) {
		if ( dd.options[i].value == v ) {
			dd.selectedIndex = i;
			return true
		}
	}
	return false;
}

function isIn(elt, list){
	for(var i=0; i < list.length; i++){
		var tempArray = list[i].split(":")
		if( tempArray[0] == elt ){
			return tempArray;
		}
	}
	return false;
}


function setVariable(type,switchType) {
	if (type == 'search' && switchType == true) {
		isSearch = true;
	} else {
		isSearch = false;
	}
}

