/*************************************************************************
	The following variables are used in various functions.  The names 
	should be pretty self-explainitory
**************************************************************************/
var typeSelected  = "";
var stateSelected = "";
var citySelected  = "";
var isPreNN6      = (navigator.appName == "Netscape" && parseInt(navigator.appVersion) <= 4);
var visitedPage   = 0;

function visited() {
	visitedPage=1;
}

/*************************************************************************

   FUNCTION NAME: list()
   PARAMETERS: Name, Value, URL

   DESCRIPTION:
      List array constructor - Don't change anything here.
      "Name" = the product name you are adding to the list
      "Value" = the array the product belongs in
      "URL" = the URL the product is to go to when the user hits
      the go button

**************************************************************************/

function list(name, value, url) {
   this.name = name;
   this.value = value;
   this.url = url;
}


/**** The US is the only Country with states ****/
var US = new Array();


/*************************************************************************
	All of these arrays are used for the state and province lists
	If you need to add a state create a new variable here.
**************************************************************************/
/**** START codelist3.wri ****/

var AK = new Array();
var AL = new Array();
var AR = new Array();
var AZ = new Array();
var CA = new Array();
var CO = new Array();
var CT = new Array();
var DC = new Array();
var DE = new Array();
var FL = new Array();
var GA = new Array();
var HI = new Array();
var IA = new Array();
var ID = new Array();
var IL = new Array();
var IN = new Array();
var KS = new Array();
var KY = new Array();
var LA = new Array();
var MA = new Array();
var MD = new Array();
var ME = new Array();
var MI = new Array();
var MN = new Array();
var MO = new Array();
var MS = new Array();
var MT = new Array();
var NC = new Array();
var ND = new Array();
var NE = new Array();
var NH = new Array();
var NJ = new Array();
var NM = new Array();
var NV = new Array();
var NY = new Array();
var OH = new Array();
var OK = new Array();
var OR = new Array();
var PA = new Array();
var PR = new Array();
var RI = new Array();
var SC = new Array();
var SD = new Array();
var TN = new Array();
var TX = new Array();
var UT = new Array();
var VA = new Array();
var VT = new Array();
var WA = new Array();
var WI = new Array();
var WV = new Array();
var WY = new Array();
var Australia = new Array();
var Austria = new Array();
var Bahamas = new Array();
var Belgium = new Array();
var Brazil = new Array();
var Canada = new Array();
var Columbia = new Array();
var Egypt = new Array();
var England = new Array();
var Finland = new Array();
var France = new Array();
var Germany = new Array();
var Greece = new Array();
var Hongkong = new Array();
var Hungary = new Array();
var Iceland = new Array();
var India = new Array();
var Ireland = new Array();
var Italy = new Array();
var Japan = new Array();
var Korea = new Array();
var Mexico = new Array();
var Monaco = new Array();
var Netherlands = new Array();
var NewZealand = new Array();
var Norway = new Array();
var Peru = new Array();
var Philippines = new Array();
var Russia = new Array();
var Singapore = new Array();
var Spain = new Array();
var Sweden = new Array();
var Switzerland = new Array();
/**** STOP  codelist3.wri ****/


/*****************************************************************************

	FUNCTION: populateList()
	PARAMETERS: whichBox
	
	DESCRIPTION: 
		This function decides which box is being used and which list to 
		display.  It takes the parameter "whichBox" from the form on
		"/support/driver.html".
		
		If the user selects a country then the list of 
		states and provinces for that country is displayed
		
		If the user has selected an state then the list of 
		cities for that state will be displayed.
		
******************************************************************************/
function populateList(whichBox) {

	if (whichBox == "country") {
		/* Set the product listing to ZERO */
		document.form1.state.options.length = 0;
		document.form1.city.options.length = 0;

		/* Get the country selected from the left most box on the form */
		typeSelected = document.form1.type.options[document.form1.type.selectedIndex].value;

      /**** START codelist4.wri ****/

if (typeSelected == "us") {
   for (var i=0;i<US.length;i++) {
      document.form1.state.options[i] = new Option(US[i].name, US[i].value);
   }
}

if (typeSelected == "Australia") {
   for (var i=0;i<Australia.length;i++) {
      document.form1.city.options[i] = new Option(Australia[i].name, Australia[i].value);
   }
}

if (typeSelected == "Austria") {
   for (var i=0;i<Austria.length;i++) {
      document.form1.city.options[i] = new Option(Austria[i].name, Austria[i].value);
   }
}

if (typeSelected == "Bahamas") {
   for (var i=0;i<Bahamas.length;i++) {
      document.form1.city.options[i] = new Option(Bahamas[i].name, Bahamas[i].value);
   }
}

if (typeSelected == "Belgium") {
   for (var i=0;i<Belgium.length;i++) {
      document.form1.city.options[i] = new Option(Belgium[i].name, Belgium[i].value);
   }
}

if (typeSelected == "Brazil") {
   for (var i=0;i<Brazil.length;i++) {
      document.form1.city.options[i] = new Option(Brazil[i].name, Brazil[i].value);
   }
}

if (typeSelected == "Canada") {
   for (var i=0;i<Canada.length;i++) {
      document.form1.city.options[i] = new Option(Canada[i].name, Canada[i].value);
   }
}

if (typeSelected == "Columbia") {
   for (var i=0;i<Columbia.length;i++) {
      document.form1.city.options[i] = new Option(Columbia[i].name, Columbia[i].value);
   }
}

if (typeSelected == "Egypt") {
   for (var i=0;i<Egypt.length;i++) {
      document.form1.city.options[i] = new Option(Egypt[i].name, Egypt[i].value);
   }
}

if (typeSelected == "England") {
   for (var i=0;i<England.length;i++) {
      document.form1.city.options[i] = new Option(England[i].name, England[i].value);
   }
}

if (typeSelected == "Finland") {
   for (var i=0;i<Finland.length;i++) {
      document.form1.city.options[i] = new Option(Finland[i].name, Finland[i].value);
   }
}

if (typeSelected == "France") {
   for (var i=0;i<France.length;i++) {
      document.form1.city.options[i] = new Option(France[i].name, France[i].value);
   }
}

if (typeSelected == "Germany") {
   for (var i=0;i<Germany.length;i++) {
      document.form1.city.options[i] = new Option(Germany[i].name, Germany[i].value);
   }
}

if (typeSelected == "Greece") {
   for (var i=0;i<Greece.length;i++) {
      document.form1.city.options[i] = new Option(Greece[i].name, Greece[i].value);
   }
}

if (typeSelected == "Hongkong") {
   for (var i=0;i<Hongkong.length;i++) {
      document.form1.city.options[i] = new Option(Hongkong[i].name, Hongkong[i].value);
   }
}

if (typeSelected == "Hungary") {
   for (var i=0;i<Hungary.length;i++) {
      document.form1.city.options[i] = new Option(Hungary[i].name, Hungary[i].value);
   }
}

if (typeSelected == "Iceland") {
   for (var i=0;i<Iceland.length;i++) {
      document.form1.city.options[i] = new Option(Iceland[i].name, Iceland[i].value);
   }
}

if (typeSelected == "India") {
   for (var i=0;i<India.length;i++) {
      document.form1.city.options[i] = new Option(India[i].name, India[i].value);
   }
}

if (typeSelected == "Ireland") {
   for (var i=0;i<Ireland.length;i++) {
      document.form1.city.options[i] = new Option(Ireland[i].name, Ireland[i].value);
   }
}

if (typeSelected == "Italy") {
   for (var i=0;i<Italy.length;i++) {
      document.form1.city.options[i] = new Option(Italy[i].name, Italy[i].value);
   }
}

if (typeSelected == "Japan") {
   for (var i=0;i<Japan.length;i++) {
      document.form1.city.options[i] = new Option(Japan[i].name, Japan[i].value);
   }
}

if (typeSelected == "Korea") {
   for (var i=0;i<Korea.length;i++) {
      document.form1.city.options[i] = new Option(Korea[i].name, Korea[i].value);
   }
}

if (typeSelected == "Mexico") {
   for (var i=0;i<Mexico.length;i++) {
      document.form1.city.options[i] = new Option(Mexico[i].name, Mexico[i].value);
   }
}

if (typeSelected == "Monaco") {
   for (var i=0;i<Monaco.length;i++) {
      document.form1.city.options[i] = new Option(Monaco[i].name, Monaco[i].value);
   }
}

if (typeSelected == "Netherlands") {
   for (var i=0;i<Netherlands.length;i++) {
      document.form1.city.options[i] = new Option(Netherlands[i].name, Netherlands[i].value);
   }
}

if (typeSelected == "NewZealand") {
   for (var i=0;i<NewZealand.length;i++) {
      document.form1.city.options[i] = new Option(NewZealand[i].name, NewZealand[i].value);
   }
}

if (typeSelected == "Norway") {
   for (var i=0;i<Norway.length;i++) {
      document.form1.city.options[i] = new Option(Norway[i].name, Norway[i].value);
   }
}

if (typeSelected == "Peru") {
   for (var i=0;i<Peru.length;i++) {
      document.form1.city.options[i] = new Option(Peru[i].name, Peru[i].value);
   }
}

if (typeSelected == "Philippines") {
   for (var i=0;i<Philippines.length;i++) {
      document.form1.city.options[i] = new Option(Philippines[i].name, Philippines[i].value);
   }
}

if (typeSelected == "Russia") {
   for (var i=0;i<Russia.length;i++) {
      document.form1.city.options[i] = new Option(Russia[i].name, Russia[i].value);
   }
}

if (typeSelected == "Singapore") {
   for (var i=0;i<Singapore.length;i++) {
      document.form1.city.options[i] = new Option(Singapore[i].name, Singapore[i].value);
   }
}

if (typeSelected == "Spain") {
   for (var i=0;i<Spain.length;i++) {
      document.form1.city.options[i] = new Option(Spain[i].name, Spain[i].value);
   }
}

if (typeSelected == "Sweden") {
   for (var i=0;i<Sweden.length;i++) {
      document.form1.city.options[i] = new Option(Sweden[i].name, Sweden[i].value);
   }
}

if (typeSelected == "Switzerland") {
   for (var i=0;i<Switzerland.length;i++) {
      document.form1.city.options[i] = new Option(Switzerland[i].name, Switzerland[i].value);
   }
}

      /**** STOP  codelist4.wri ****/
	}
	else if (whichBox == "state") {
		/* Get the state selected from the middle box */
		stateSelected = document.form1.state.options[document.form1.state.selectedIndex].value;

		/* Set the product listing to ZERO */
		document.form1.city.options.length = 0;

      /**** START codelist1.wri ****/

if (stateSelected.indexOf("AK") != -1) {
   for (var i=0;i<AK.length;i++) {
      document.form1.city.options[i] = new Option(AK[i].name, AK[i].value);
   }
}
if (stateSelected.indexOf("AL") != -1) {
   for (var i=0;i<AL.length;i++) {
      document.form1.city.options[i] = new Option(AL[i].name, AL[i].value);
   }
}
if (stateSelected.indexOf("AR") != -1) {
   for (var i=0;i<AR.length;i++) {
      document.form1.city.options[i] = new Option(AR[i].name, AR[i].value);
   }
}
if (stateSelected.indexOf("AZ") != -1) {
   for (var i=0;i<AZ.length;i++) {
      document.form1.city.options[i] = new Option(AZ[i].name, AZ[i].value);
   }
}
if (stateSelected.indexOf("CA") != -1) {
   for (var i=0;i<CA.length;i++) {
      document.form1.city.options[i] = new Option(CA[i].name, CA[i].value);
   }
}
if (stateSelected.indexOf("CO") != -1) {
   for (var i=0;i<CO.length;i++) {
      document.form1.city.options[i] = new Option(CO[i].name, CO[i].value);
   }
}
if (stateSelected.indexOf("CT") != -1) {
   for (var i=0;i<CT.length;i++) {
      document.form1.city.options[i] = new Option(CT[i].name, CT[i].value);
   }
}
if (stateSelected.indexOf("DC") != -1) {
   for (var i=0;i<DC.length;i++) {
      document.form1.city.options[i] = new Option(DC[i].name, DC[i].value);
   }
}
if (stateSelected.indexOf("DE") != -1) {
   for (var i=0;i<DE.length;i++) {
      document.form1.city.options[i] = new Option(DE[i].name, DE[i].value);
   }
}
if (stateSelected.indexOf("FL") != -1) {
   for (var i=0;i<FL.length;i++) {
      document.form1.city.options[i] = new Option(FL[i].name, FL[i].value);
   }
}
if (stateSelected.indexOf("GA") != -1) {
   for (var i=0;i<GA.length;i++) {
      document.form1.city.options[i] = new Option(GA[i].name, GA[i].value);
   }
}
if (stateSelected.indexOf("HI") != -1) {
   for (var i=0;i<HI.length;i++) {
      document.form1.city.options[i] = new Option(HI[i].name, HI[i].value);
   }
}
if (stateSelected.indexOf("IA") != -1) {
   for (var i=0;i<IA.length;i++) {
      document.form1.city.options[i] = new Option(IA[i].name, IA[i].value);
   }
}
if (stateSelected.indexOf("ID") != -1) {
   for (var i=0;i<ID.length;i++) {
      document.form1.city.options[i] = new Option(ID[i].name, ID[i].value);
   }
}
if (stateSelected.indexOf("IL") != -1) {
   for (var i=0;i<IL.length;i++) {
      document.form1.city.options[i] = new Option(IL[i].name, IL[i].value);
   }
}
if (stateSelected.indexOf("IN") != -1) {
   for (var i=0;i<IN.length;i++) {
      document.form1.city.options[i] = new Option(IN[i].name, IN[i].value);
   }
}
if (stateSelected.indexOf("KS") != -1) {
   for (var i=0;i<KS.length;i++) {
      document.form1.city.options[i] = new Option(KS[i].name, KS[i].value);
   }
}
if (stateSelected.indexOf("KY") != -1) {
   for (var i=0;i<KY.length;i++) {
      document.form1.city.options[i] = new Option(KY[i].name, KY[i].value);
   }
}
if (stateSelected.indexOf("LA") != -1) {
   for (var i=0;i<LA.length;i++) {
      document.form1.city.options[i] = new Option(LA[i].name, LA[i].value);
   }
}
if (stateSelected.indexOf("MA") != -1) {
   for (var i=0;i<MA.length;i++) {
      document.form1.city.options[i] = new Option(MA[i].name, MA[i].value);
   }
}
if (stateSelected.indexOf("MD") != -1) {
   for (var i=0;i<MD.length;i++) {
      document.form1.city.options[i] = new Option(MD[i].name, MD[i].value);
   }
}
if (stateSelected.indexOf("ME") != -1) {
   for (var i=0;i<ME.length;i++) {
      document.form1.city.options[i] = new Option(ME[i].name, ME[i].value);
   }
}
if (stateSelected.indexOf("MI") != -1) {
   for (var i=0;i<MI.length;i++) {
      document.form1.city.options[i] = new Option(MI[i].name, MI[i].value);
   }
}
if (stateSelected.indexOf("MN") != -1) {
   for (var i=0;i<MN.length;i++) {
      document.form1.city.options[i] = new Option(MN[i].name, MN[i].value);
   }
}
if (stateSelected.indexOf("MO") != -1) {
   for (var i=0;i<MO.length;i++) {
      document.form1.city.options[i] = new Option(MO[i].name, MO[i].value);
   }
}
if (stateSelected.indexOf("MS") != -1) {
   for (var i=0;i<MS.length;i++) {
      document.form1.city.options[i] = new Option(MS[i].name, MS[i].value);
   }
}
if (stateSelected.indexOf("MT") != -1) {
   for (var i=0;i<MT.length;i++) {
      document.form1.city.options[i] = new Option(MT[i].name, MT[i].value);
   }
}
if (stateSelected.indexOf("NC") != -1) {
   for (var i=0;i<NC.length;i++) {
      document.form1.city.options[i] = new Option(NC[i].name, NC[i].value);
   }
}
if (stateSelected.indexOf("ND") != -1) {
   for (var i=0;i<ND.length;i++) {
      document.form1.city.options[i] = new Option(ND[i].name, ND[i].value);
   }
}
if (stateSelected.indexOf("NE") != -1) {
   for (var i=0;i<NE.length;i++) {
      document.form1.city.options[i] = new Option(NE[i].name, NE[i].value);
   }
}
if (stateSelected.indexOf("NH") != -1) {
   for (var i=0;i<NH.length;i++) {
      document.form1.city.options[i] = new Option(NH[i].name, NH[i].value);
   }
}
if (stateSelected.indexOf("NJ") != -1) {
   for (var i=0;i<NJ.length;i++) {
      document.form1.city.options[i] = new Option(NJ[i].name, NJ[i].value);
   }
}
if (stateSelected.indexOf("NM") != -1) {
   for (var i=0;i<NM.length;i++) {
      document.form1.city.options[i] = new Option(NM[i].name, NM[i].value);
   }
}
if (stateSelected.indexOf("NV") != -1) {
   for (var i=0;i<NV.length;i++) {
      document.form1.city.options[i] = new Option(NV[i].name, NV[i].value);
   }
}
if (stateSelected.indexOf("NY") != -1) {
   for (var i=0;i<NY.length;i++) {
      document.form1.city.options[i] = new Option(NY[i].name, NY[i].value);
   }
}
if (stateSelected.indexOf("OH") != -1) {
   for (var i=0;i<OH.length;i++) {
      document.form1.city.options[i] = new Option(OH[i].name, OH[i].value);
   }
}
if (stateSelected.indexOf("OK") != -1) {
   for (var i=0;i<OK.length;i++) {
      document.form1.city.options[i] = new Option(OK[i].name, OK[i].value);
   }
}
if (stateSelected.indexOf("OR") != -1) {
   for (var i=0;i<OR.length;i++) {
      document.form1.city.options[i] = new Option(OR[i].name, OR[i].value);
   }
}
if (stateSelected.indexOf("PA") != -1) {
   for (var i=0;i<PA.length;i++) {
      document.form1.city.options[i] = new Option(PA[i].name, PA[i].value);
   }
}
if (stateSelected.indexOf("PR") != -1) {
   for (var i=0;i<PR.length;i++) {
      document.form1.city.options[i] = new Option(PR[i].name, PR[i].value);
   }
}
if (stateSelected.indexOf("RI") != -1) {
   for (var i=0;i<RI.length;i++) {
      document.form1.city.options[i] = new Option(RI[i].name, RI[i].value);
   }
}
if (stateSelected.indexOf("SC") != -1) {
   for (var i=0;i<SC.length;i++) {
      document.form1.city.options[i] = new Option(SC[i].name, SC[i].value);
   }
}
if (stateSelected.indexOf("SD") != -1) {
   for (var i=0;i<SD.length;i++) {
      document.form1.city.options[i] = new Option(SD[i].name, SD[i].value);
   }
}
if (stateSelected.indexOf("TN") != -1) {
   for (var i=0;i<TN.length;i++) {
      document.form1.city.options[i] = new Option(TN[i].name, TN[i].value);
   }
}
if (stateSelected.indexOf("TX") != -1) {
   for (var i=0;i<TX.length;i++) {
      document.form1.city.options[i] = new Option(TX[i].name, TX[i].value);
   }
}
if (stateSelected.indexOf("UT") != -1) {
   for (var i=0;i<UT.length;i++) {
      document.form1.city.options[i] = new Option(UT[i].name, UT[i].value);
   }
}
if (stateSelected.indexOf("VA") != -1) {
   for (var i=0;i<VA.length;i++) {
      document.form1.city.options[i] = new Option(VA[i].name, VA[i].value);
   }
}
if (stateSelected.indexOf("VT") != -1) {
   for (var i=0;i<VT.length;i++) {
      document.form1.city.options[i] = new Option(VT[i].name, VT[i].value);
   }
}
if (stateSelected.indexOf("WA") != -1) {
   for (var i=0;i<WA.length;i++) {
      document.form1.city.options[i] = new Option(WA[i].name, WA[i].value);
   }
}
if (stateSelected.indexOf("WI") != -1) {
   for (var i=0;i<WI.length;i++) {
      document.form1.city.options[i] = new Option(WI[i].name, WI[i].value);
   }
}
if (stateSelected.indexOf("WV") != -1) {
   for (var i=0;i<WV.length;i++) {
      document.form1.city.options[i] = new Option(WV[i].name, WV[i].value);
   }
}
if (stateSelected.indexOf("WY") != -1) {
   for (var i=0;i<WY.length;i++) {
      document.form1.city.options[i] = new Option(WY[i].name, WY[i].value);
   }
}

      /**** STOP  codelist1.wri ****/
	}

	/*  If the browser is less than Navigator 6, refresh the page...otherwise nothing will show up */
	if (isPreNN6) {
		history.go(0);
	}
}

/*****************************************************************************

	FUNCTION: changePage()
	PARAMETERS: None
	
	DESCRIPTION
		This function takes the value of the selected city in the right
		hand box and grabs the "value" (placed there by the constructor earlier)
		and searches for the correct link.  The link is stored as 
		"citySelected.url"...just as the value of the selected city would 
		be stored as "citySelected.value".  The value is also the same as 
		the array that the product is stored in. 
		
******************************************************************************/


function changePage() {

   /* Make sure a city has been selected before trying to move on */
	if (document.form1.city.options.selectedIndex == -1) {
			alert("Please select a City");
			return false;
	}


	/* Get product values from the last select box */
	citySelectedValue = document.form1.city.options[document.form1.city.selectedIndex].value;
	citySelected = document.form1.city.options[document.form1.city.selectedIndex].text;

   /**** START codelist2.wri ****/

if (citySelectedValue == "AK") {
   for (var i=0;i<document.form1.city.options.length;i++) {
      if (citySelected == AK[i].name) {
         document.form1.action = AK[i].url; 
      }
   }
}

if (citySelectedValue == "AL") {
   for (var i=0;i<document.form1.city.options.length;i++) {
      if (citySelected == AL[i].name) {
         document.form1.action = AL[i].url; 
      }
   }
}

if (citySelectedValue == "AR") {
   for (var i=0;i<document.form1.city.options.length;i++) {
      if (citySelected == AR[i].name) {
         document.form1.action = AR[i].url; 
      }
   }
}

if (citySelectedValue == "AZ") {
   for (var i=0;i<document.form1.city.options.length;i++) {
      if (citySelected == AZ[i].name) {
         document.form1.action = AZ[i].url; 
      }
   }
}

if (citySelectedValue == "CA") {
   for (var i=0;i<document.form1.city.options.length;i++) {
      if (citySelected == CA[i].name) {
         document.form1.action = CA[i].url; 
      }
   }
}

if (citySelectedValue == "CO") {
   for (var i=0;i<document.form1.city.options.length;i++) {
      if (citySelected == CO[i].name) {
         document.form1.action = CO[i].url; 
      }
   }
}

if (citySelectedValue == "CT") {
   for (var i=0;i<document.form1.city.options.length;i++) {
      if (citySelected == CT[i].name) {
         document.form1.action = CT[i].url; 
      }
   }
}

if (citySelectedValue == "DC") {
   for (var i=0;i<document.form1.city.options.length;i++) {
      if (citySelected == DC[i].name) {
         document.form1.action = DC[i].url; 
      }
   }
}

if (citySelectedValue == "DE") {
   for (var i=0;i<document.form1.city.options.length;i++) {
      if (citySelected == DE[i].name) {
         document.form1.action = DE[i].url; 
      }
   }
}

if (citySelectedValue == "FL") {
   for (var i=0;i<document.form1.city.options.length;i++) {
      if (citySelected == FL[i].name) {
         document.form1.action = FL[i].url; 
      }
   }
}

if (citySelectedValue == "GA") {
   for (var i=0;i<document.form1.city.options.length;i++) {
      if (citySelected == GA[i].name) {
         document.form1.action = GA[i].url; 
      }
   }
}

if (citySelectedValue == "HI") {
   for (var i=0;i<document.form1.city.options.length;i++) {
      if (citySelected == HI[i].name) {
         document.form1.action = HI[i].url; 
      }
   }
}

if (citySelectedValue == "IA") {
   for (var i=0;i<document.form1.city.options.length;i++) {
      if (citySelected == IA[i].name) {
         document.form1.action = IA[i].url; 
      }
   }
}

if (citySelectedValue == "ID") {
   for (var i=0;i<document.form1.city.options.length;i++) {
      if (citySelected == ID[i].name) {
         document.form1.action = ID[i].url; 
      }
   }
}

if (citySelectedValue == "IL") {
   for (var i=0;i<document.form1.city.options.length;i++) {
      if (citySelected == IL[i].name) {
         document.form1.action = IL[i].url; 
      }
   }
}

if (citySelectedValue == "IN") {
   for (var i=0;i<document.form1.city.options.length;i++) {
      if (citySelected == IN[i].name) {
         document.form1.action = IN[i].url; 
      }
   }
}

if (citySelectedValue == "KS") {
   for (var i=0;i<document.form1.city.options.length;i++) {
      if (citySelected == KS[i].name) {
         document.form1.action = KS[i].url; 
      }
   }
}

if (citySelectedValue == "KY") {
   for (var i=0;i<document.form1.city.options.length;i++) {
      if (citySelected == KY[i].name) {
         document.form1.action = KY[i].url; 
      }
   }
}

if (citySelectedValue == "LA") {
   for (var i=0;i<document.form1.city.options.length;i++) {
      if (citySelected == LA[i].name) {
         document.form1.action = LA[i].url; 
      }
   }
}

if (citySelectedValue == "MA") {
   for (var i=0;i<document.form1.city.options.length;i++) {
      if (citySelected == MA[i].name) {
         document.form1.action = MA[i].url; 
      }
   }
}

if (citySelectedValue == "MD") {
   for (var i=0;i<document.form1.city.options.length;i++) {
      if (citySelected == MD[i].name) {
         document.form1.action = MD[i].url; 
      }
   }
}

if (citySelectedValue == "ME") {
   for (var i=0;i<document.form1.city.options.length;i++) {
      if (citySelected == ME[i].name) {
         document.form1.action = ME[i].url; 
      }
   }
}

if (citySelectedValue == "MI") {
   for (var i=0;i<document.form1.city.options.length;i++) {
      if (citySelected == MI[i].name) {
         document.form1.action = MI[i].url; 
      }
   }
}

if (citySelectedValue == "MN") {
   for (var i=0;i<document.form1.city.options.length;i++) {
      if (citySelected == MN[i].name) {
         document.form1.action = MN[i].url; 
      }
   }
}

if (citySelectedValue == "MO") {
   for (var i=0;i<document.form1.city.options.length;i++) {
      if (citySelected == MO[i].name) {
         document.form1.action = MO[i].url; 
      }
   }
}

if (citySelectedValue == "MS") {
   for (var i=0;i<document.form1.city.options.length;i++) {
      if (citySelected == MS[i].name) {
         document.form1.action = MS[i].url; 
      }
   }
}

if (citySelectedValue == "MT") {
   for (var i=0;i<document.form1.city.options.length;i++) {
      if (citySelected == MT[i].name) {
         document.form1.action = MT[i].url; 
      }
   }
}

if (citySelectedValue == "NC") {
   for (var i=0;i<document.form1.city.options.length;i++) {
      if (citySelected == NC[i].name) {
         document.form1.action = NC[i].url; 
      }
   }
}

if (citySelectedValue == "ND") {
   for (var i=0;i<document.form1.city.options.length;i++) {
      if (citySelected == ND[i].name) {
         document.form1.action = ND[i].url; 
      }
   }
}

if (citySelectedValue == "NE") {
   for (var i=0;i<document.form1.city.options.length;i++) {
      if (citySelected == NE[i].name) {
         document.form1.action = NE[i].url; 
      }
   }
}

if (citySelectedValue == "NH") {
   for (var i=0;i<document.form1.city.options.length;i++) {
      if (citySelected == NH[i].name) {
         document.form1.action = NH[i].url; 
      }
   }
}

if (citySelectedValue == "NJ") {
   for (var i=0;i<document.form1.city.options.length;i++) {
      if (citySelected == NJ[i].name) {
         document.form1.action = NJ[i].url; 
      }
   }
}

if (citySelectedValue == "NM") {
   for (var i=0;i<document.form1.city.options.length;i++) {
      if (citySelected == NM[i].name) {
         document.form1.action = NM[i].url; 
      }
   }
}

if (citySelectedValue == "NV") {
   for (var i=0;i<document.form1.city.options.length;i++) {
      if (citySelected == NV[i].name) {
         document.form1.action = NV[i].url; 
      }
   }
}

if (citySelectedValue == "NY") {
   for (var i=0;i<document.form1.city.options.length;i++) {
      if (citySelected == NY[i].name) {
         document.form1.action = NY[i].url; 
      }
   }
}

if (citySelectedValue == "OH") {
   for (var i=0;i<document.form1.city.options.length;i++) {
      if (citySelected == OH[i].name) {
         document.form1.action = OH[i].url; 
      }
   }
}

if (citySelectedValue == "OK") {
   for (var i=0;i<document.form1.city.options.length;i++) {
      if (citySelected == OK[i].name) {
         document.form1.action = OK[i].url; 
      }
   }
}

if (citySelectedValue == "OR") {
   for (var i=0;i<document.form1.city.options.length;i++) {
      if (citySelected == OR[i].name) {
         document.form1.action = OR[i].url; 
      }
   }
}

if (citySelectedValue == "PA") {
   for (var i=0;i<document.form1.city.options.length;i++) {
      if (citySelected == PA[i].name) {
         document.form1.action = PA[i].url; 
      }
   }
}

if (citySelectedValue == "PR") {
   for (var i=0;i<document.form1.city.options.length;i++) {
      if (citySelected == PR[i].name) {
         document.form1.action = PR[i].url; 
      }
   }
}

if (citySelectedValue == "RI") {
   for (var i=0;i<document.form1.city.options.length;i++) {
      if (citySelected == RI[i].name) {
         document.form1.action = RI[i].url; 
      }
   }
}

if (citySelectedValue == "SC") {
   for (var i=0;i<document.form1.city.options.length;i++) {
      if (citySelected == SC[i].name) {
         document.form1.action = SC[i].url; 
      }
   }
}

if (citySelectedValue == "SD") {
   for (var i=0;i<document.form1.city.options.length;i++) {
      if (citySelected == SD[i].name) {
         document.form1.action = SD[i].url; 
      }
   }
}

if (citySelectedValue == "TN") {
   for (var i=0;i<document.form1.city.options.length;i++) {
      if (citySelected == TN[i].name) {
         document.form1.action = TN[i].url; 
      }
   }
}

if (citySelectedValue == "TX") {
   for (var i=0;i<document.form1.city.options.length;i++) {
      if (citySelected == TX[i].name) {
         document.form1.action = TX[i].url; 
      }
   }
}

if (citySelectedValue == "UT") {
   for (var i=0;i<document.form1.city.options.length;i++) {
      if (citySelected == UT[i].name) {
         document.form1.action = UT[i].url; 
      }
   }
}

if (citySelectedValue == "VA") {
   for (var i=0;i<document.form1.city.options.length;i++) {
      if (citySelected == VA[i].name) {
         document.form1.action = VA[i].url; 
      }
   }
}

if (citySelectedValue == "VT") {
   for (var i=0;i<document.form1.city.options.length;i++) {
      if (citySelected == VT[i].name) {
         document.form1.action = VT[i].url; 
      }
   }
}

if (citySelectedValue == "WA") {
   for (var i=0;i<document.form1.city.options.length;i++) {
      if (citySelected == WA[i].name) {
         document.form1.action = WA[i].url; 
      }
   }
}

if (citySelectedValue == "WI") {
   for (var i=0;i<document.form1.city.options.length;i++) {
      if (citySelected == WI[i].name) {
         document.form1.action = WI[i].url; 
      }
   }
}

if (citySelectedValue == "WV") {
   for (var i=0;i<document.form1.city.options.length;i++) {
      if (citySelected == WV[i].name) {
         document.form1.action = WV[i].url; 
      }
   }
}

if (citySelectedValue == "WY") {
   for (var i=0;i<document.form1.city.options.length;i++) {
      if (citySelected == WY[i].name) {
         document.form1.action = WY[i].url; 
      }
   }
}

if (citySelectedValue == "Australia") {
   for (var i=0;i<document.form1.city.options.length;i++) {
      if (citySelected == Australia[i].name) {
         document.form1.action = Australia[i].url; 
      }
   }
}

if (citySelectedValue == "Austria") {
   for (var i=0;i<document.form1.city.options.length;i++) {
      if (citySelected == Austria[i].name) {
         document.form1.action = Austria[i].url; 
      }
   }
}

if (citySelectedValue == "Bahamas") {
   for (var i=0;i<document.form1.city.options.length;i++) {
      if (citySelected == Bahamas[i].name) {
         document.form1.action = Bahamas[i].url; 
      }
   }
}

if (citySelectedValue == "Belgium") {
   for (var i=0;i<document.form1.city.options.length;i++) {
      if (citySelected == Belgium[i].name) {
         document.form1.action = Belgium[i].url; 
      }
   }
}

if (citySelectedValue == "Brazil") {
   for (var i=0;i<document.form1.city.options.length;i++) {
      if (citySelected == Brazil[i].name) {
         document.form1.action = Brazil[i].url; 
      }
   }
}

if (citySelectedValue == "Canada") {
   for (var i=0;i<document.form1.city.options.length;i++) {
      if (citySelected == Canada[i].name) {
         document.form1.action = Canada[i].url; 
      }
   }
}

if (citySelectedValue == "Columbia") {
   for (var i=0;i<document.form1.city.options.length;i++) {
      if (citySelected == Columbia[i].name) {
         document.form1.action = Columbia[i].url; 
      }
   }
}

if (citySelectedValue == "Egypt") {
   for (var i=0;i<document.form1.city.options.length;i++) {
      if (citySelected == Egypt[i].name) {
         document.form1.action = Egypt[i].url; 
      }
   }
}

if (citySelectedValue == "England") {
   for (var i=0;i<document.form1.city.options.length;i++) {
      if (citySelected == England[i].name) {
         document.form1.action = England[i].url; 
      }
   }
}

if (citySelectedValue == "Finland") {
   for (var i=0;i<document.form1.city.options.length;i++) {
      if (citySelected == Finland[i].name) {
         document.form1.action = Finland[i].url; 
      }
   }
}

if (citySelectedValue == "France") {
   for (var i=0;i<document.form1.city.options.length;i++) {
      if (citySelected == France[i].name) {
         document.form1.action = France[i].url; 
      }
   }
}

if (citySelectedValue == "Germany") {
   for (var i=0;i<document.form1.city.options.length;i++) {
      if (citySelected == Germany[i].name) {
         document.form1.action = Germany[i].url; 
      }
   }
}

if (citySelectedValue == "Greece") {
   for (var i=0;i<document.form1.city.options.length;i++) {
      if (citySelected == Greece[i].name) {
         document.form1.action = Greece[i].url; 
      }
   }
}

if (citySelectedValue == "Hongkong") {
   for (var i=0;i<document.form1.city.options.length;i++) {
      if (citySelected == Hongkong[i].name) {
         document.form1.action = Hongkong[i].url; 
      }
   }
}

if (citySelectedValue == "Hungary") {
   for (var i=0;i<document.form1.city.options.length;i++) {
      if (citySelected == Hungary[i].name) {
         document.form1.action = Hungary[i].url; 
      }
   }
}

if (citySelectedValue == "Iceland") {
   for (var i=0;i<document.form1.city.options.length;i++) {
      if (citySelected == Iceland[i].name) {
         document.form1.action = Iceland[i].url; 
      }
   }
}

if (citySelectedValue == "India") {
   for (var i=0;i<document.form1.city.options.length;i++) {
      if (citySelected == India[i].name) {
         document.form1.action = India[i].url; 
      }
   }
}

if (citySelectedValue == "Ireland") {
   for (var i=0;i<document.form1.city.options.length;i++) {
      if (citySelected == Ireland[i].name) {
         document.form1.action = Ireland[i].url; 
      }
   }
}

if (citySelectedValue == "Italy") {
   for (var i=0;i<document.form1.city.options.length;i++) {
      if (citySelected == Italy[i].name) {
         document.form1.action = Italy[i].url; 
      }
   }
}

if (citySelectedValue == "Japan") {
   for (var i=0;i<document.form1.city.options.length;i++) {
      if (citySelected == Japan[i].name) {
         document.form1.action = Japan[i].url; 
      }
   }
}

if (citySelectedValue == "Korea") {
   for (var i=0;i<document.form1.city.options.length;i++) {
      if (citySelected == Korea[i].name) {
         document.form1.action = Korea[i].url; 
      }
   }
}

if (citySelectedValue == "Mexico") {
   for (var i=0;i<document.form1.city.options.length;i++) {
      if (citySelected == Mexico[i].name) {
         document.form1.action = Mexico[i].url; 
      }
   }
}

if (citySelectedValue == "Monaco") {
   for (var i=0;i<document.form1.city.options.length;i++) {
      if (citySelected == Monaco[i].name) {
         document.form1.action = Monaco[i].url; 
      }
   }
}

if (citySelectedValue == "Netherlands") {
   for (var i=0;i<document.form1.city.options.length;i++) {
      if (citySelected == Netherlands[i].name) {
         document.form1.action = Netherlands[i].url; 
      }
   }
}

if (citySelectedValue == "NewZealand") {
   for (var i=0;i<document.form1.city.options.length;i++) {
      if (citySelected == NewZealand[i].name) {
         document.form1.action = NewZealand[i].url; 
      }
   }
}

if (citySelectedValue == "Norway") {
   for (var i=0;i<document.form1.city.options.length;i++) {
      if (citySelected == Norway[i].name) {
         document.form1.action = Norway[i].url; 
      }
   }
}

if (citySelectedValue == "Peru") {
   for (var i=0;i<document.form1.city.options.length;i++) {
      if (citySelected == Peru[i].name) {
         document.form1.action = Peru[i].url; 
      }
   }
}

if (citySelectedValue == "Philippines") {
   for (var i=0;i<document.form1.city.options.length;i++) {
      if (citySelected == Philippines[i].name) {
         document.form1.action = Philippines[i].url; 
      }
   }
}

if (citySelectedValue == "Russia") {
   for (var i=0;i<document.form1.city.options.length;i++) {
      if (citySelected == Russia[i].name) {
         document.form1.action = Russia[i].url; 
      }
   }
}

if (citySelectedValue == "Singapore") {
   for (var i=0;i<document.form1.city.options.length;i++) {
      if (citySelected == Singapore[i].name) {
         document.form1.action = Singapore[i].url; 
      }
   }
}

if (citySelectedValue == "Spain") {
   for (var i=0;i<document.form1.city.options.length;i++) {
      if (citySelected == Spain[i].name) {
         document.form1.action = Spain[i].url; 
      }
   }
}

if (citySelectedValue == "Sweden") {
   for (var i=0;i<document.form1.city.options.length;i++) {
      if (citySelected == Sweden[i].name) {
         document.form1.action = Sweden[i].url; 
      }
   }
}

if (citySelectedValue == "Switzerland") {
   for (var i=0;i<document.form1.city.options.length;i++) {
      if (citySelected == Switzerland[i].name) {
         document.form1.action = Switzerland[i].url; 
      }
   }
}

   /**** STOP  codelist2.wri ****/
}


/*****************************************************************************
	
	TO CREATE A NEW STATE ARRAY - 
	
	1.  Create a global array at the top of this file where indicated
	2.  Input all the new entries below: 
	
		arrayName[x] = new list("STATE NAME", "ARRAY NAME", "URL TO GO TO");

******************************************************************************/

/* The US is the only country that has states 
US[0] = new list("Alabama",                  "AL",    "null");
US[1] = new list("Alaska",                   "AK",    "null");
US[2] = new list("Arizona",                  "AZ",    "null");
US[3] = new list("Arkansas",                 "AR",    "null");
US[4] = new list("California",               "CA",    "null");
US[5] = new list("Colorado",                 "CO",    "null");
US[6] = new list("Connecticut",              "CT",    "null");
US[7] = new list("Delaware",                 "DE",    "null");
US[8] = new list("District of Columbia",     "DC",    "null");
US[9] = new list("North Carolina",           "NC",    "null");
US[10] = new list("Florida",                 "FL",    "null");
US[11] = new list("Georgia",                 "GA",    "null");
US[12] = new list("Oklahoma",                "OK",    "null");
US[13] = new list("Hawaii",                  "HI",    "null");
US[14] = new list("Idaho",                   "ID",    "null");
US[15] = new list("Illinois",                "IL",    "null");
US[16] = new list("Indiana",                 "IN",    "null");
US[17] = new list("Iowa",                    "IA",    "null");
US[18] = new list("Kansas",                  "KS",    "null");
US[19] = new list("Kentucky",                "KY",    "null");
US[20] = new list("Louisiana",               "LA",    "null");
US[21] = new list("Maine",                   "ME",    "null");
US[22] = new list("Maryland",                "MD",    "null");
US[23] = new list("Massachusetts",           "MA",    "null");
US[24] = new list("Michigan",                "MI",    "null");
US[25] = new list("Minnesota",               "MN",    "null");
US[26] = new list("Mississippi",             "MS",    "null");
US[27] = new list("Missouri",                "MO",    "null");
US[28] = new list("Montana",                 "MT",    "null");
US[29] = new list("Nebraska",                "NE",    "null");
US[30] = new list("Nevada",                  "NV",    "null");
US[31] = new list("New Hampshire",           "NH",    "null");
US[32] = new list("New Jersey",              "NJ",    "null");
US[33] = new list("New Mexico",              "NM",    "null");
US[34] = new list("New York",                "NY",    "null");
US[35] = new list("North Dakota",            "ND",    "null");
US[36] = new list("Ohio",                    "OH",    "null");
US[37] = new list("Oregon",                  "OR",    "null");
US[38] = new list("Pennsylvania",            "PA",    "null");
US[39] = new list("Puerto Rico",             "PR",    "null");
US[40] = new list("Rhode Island",            "RI",    "null");
US[41] = new list("South Carolina",          "SC",    "null");
US[42] = new list("South Dakota",            "SD",    "null");
US[43] = new list("Tennessee",               "TN",    "null");
US[44] = new list("Texas",                   "TX",    "null");
US[45] = new list("Utah",                    "UT",    "null");
US[46] = new list("Vermont",                 "VT",    "null");
US[47] = new list("Virginia",                "VA",    "null");
US[48] = new list("Washington",              "WA",    "null");
US[49] = new list("West Virginia",           "WV",    "null");
US[50] = new list("Wisconsin",               "WI",    "null");
US[51] = new list("Wyoming",                 "WY",    "null");*/

US[0] = new list("Alabama",                  "AL",    "null");
US[1] = new list("Alaska",                   "AK",    "null");
US[2] = new list("Arizona",                  "AZ",    "null");
US[3] = new list("Arkansas",                 "AR",    "null");
US[4] = new list("California",               "CA",    "null");
US[5] = new list("Colorado",                 "CO",    "null");
US[6] = new list("Connecticut",              "CT",    "null");
US[7] = new list("Delaware",                 "DE",    "null");
US[8] = new list("District of Columbia",     "DC",    "null");
US[9] = new list("Florida",                  "FL",    "null");
US[10] = new list("Georgia",                 "GA",    "null");
US[11] = new list("Hawaii",                  "HI",    "null");
US[12] = new list("Idaho",                   "ID",    "null");
US[13] = new list("Illinois",                "IL",    "null");
US[14] = new list("Indiana",                 "IN",    "null");
US[15] = new list("Iowa",                    "IA",    "null");
US[16] = new list("Kansas",                  "KS",    "null");
US[17] = new list("Kentucky",                "KY",    "null");
US[18] = new list("Louisiana",               "LA",    "null");
US[19] = new list("Maine",                   "ME",    "null");
US[20] = new list("Maryland",                "MD",    "null");
US[21] = new list("Massachusetts",           "MA",    "null");
US[22] = new list("Michigan",                "MI",    "null");
US[23] = new list("Minnesota",               "MN",    "null");
US[24] = new list("Mississippi",             "MS",    "null");
US[25] = new list("Missouri",                "MO",    "null");
US[26] = new list("Montana",                 "MT",    "null");
US[27] = new list("Nebraska",                "NE",    "null");
US[28] = new list("Nevada",                  "NV",    "null");
US[29] = new list("New Hampshire",           "NH",    "null");
US[30] = new list("New Jersey",              "NJ",    "null");
US[31] = new list("New Mexico",              "NM",    "null");
US[32] = new list("New York",                "NY",    "null");
US[33] = new list("North Carolina",          "NC",    "null");
US[34] = new list("North Dakota",            "ND",    "null");
US[35] = new list("Ohio",                    "OH",    "null");
US[36] = new list("Oklahoma",                "OK",    "null");
US[37] = new list("Oregon",                  "OR",    "null");
US[38] = new list("Pennsylvania",            "PA",    "null");
US[39] = new list("Puerto Rico",             "PR",    "null");
US[40] = new list("Rhode Island",            "RI",    "null");
US[41] = new list("South Carolina",          "SC",    "null");
US[42] = new list("South Dakota",            "SD",    "null");
US[43] = new list("Tennessee",               "TN",    "null");
US[44] = new list("Texas",                   "TX",    "null");
US[45] = new list("Utah",                    "UT",    "null");
US[46] = new list("Vermont",                 "VT",    "null");
US[47] = new list("Virginia",                "VA",    "null");
US[48] = new list("Washington",              "WA",    "null");
US[49] = new list("West Virginia",           "WV",    "null");
US[50] = new list("Wisconsin",               "WI",    "null");
US[51] = new list("Wyoming",                 "WY",    "null");



/**** START statelist.wri ****/

AK[0] = new list("Anchorage", "AK", "http://www.1stAnchorageGuide.com");
AL[0] = new list("Birmingham", "AL", "http://www.1stBirminghamGuide.com");
AL[1] = new list("Montgomery", "AL", "http://www.1stMontgomeryGuide.com");
AR[0] = new list("Little Rock", "AR", "http://www.1stLittleRockGuide.com");
AZ[0] = new list("Chandler", "AZ", "http://www.1stChandlerGuide.com");
AZ[1] = new list("Mesa", "AZ", "http://www.1stMesaGuide.com");
AZ[2] = new list("Phoenix", "AZ", "http://www.1stPhoenixGuide.com");
AZ[3] = new list("Scottsdale", "AZ", "http://www.1stScottsdaleGuide.com");
AZ[4] = new list("Tempe", "AZ", "http://www.1stTempeGuide.com");
AZ[5] = new list("Tucson", "AZ", "http://www.1stTucsonGuide.com");
CA[0] = new list("Anaheim", "CA", "http://www.1stAnaheimGuide.com");
CA[1] = new list("Bakersfield", "CA", "http://www.1stBakersfieldGuide.com");
CA[2] = new list("Fremont", "CA", "http://www.1stFremontGuide.com");
CA[3] = new list("Fresno", "CA", "http://www.1stFresnoGuide.com");
CA[4] = new list("Glendale", "CA", "http://www.1stGlendaleGuide.com");
CA[5] = new list("Hollywood", "CA", "http://www.1stHollywoodGuide.com");
CA[6] = new list("Huntington Beach", "CA", "http://www.1stHuntingtonBeachGuide.com");
CA[7] = new list("Irvine", "CA", "http://www.1stIrvineGuide.com");
CA[8] = new list("Long Beach", "CA", "http://www.1stLongBeachGuide.com");
CA[9] = new list("Los Angeles", "CA", "http://www.1stLosAngelesGuide.com");
CA[10] = new list("Modesto", "CA", "http://www.1stModestoGuide.com");
CA[11] = new list("Oakland", "CA", "http://www.1stOaklandGuide.com");
CA[12] = new list("Oceanside", "CA", "http://www.1stOceansideGuide.com");
CA[13] = new list("Palm Springs", "CA", "http://www.1stPalmSpringsGuide.com");
CA[14] = new list("Pasadena", "CA", "http://www.1stPasadenaGuide.com");
CA[15] = new list("Pomona", "CA", "http://www.1stPomonaGuide.com");
CA[16] = new list("Riverside", "CA", "http://www.1stRiversideGuide.com");
CA[17] = new list("Sacramento", "CA", "http://www.1stSacramentoGuide.com");
CA[18] = new list("San Bernadino", "CA", "http://www.1stSanBernadinoGuide.com");
CA[19] = new list("San Diego", "CA", "http://www.1stSanDiegoGuide.com");
CA[20] = new list("San Francisco", "CA", "http://www.1stSanFranciscoGuide.com");
CA[21] = new list("San Jose", "CA", "http://www.1stSanJoseGuide.com");
CA[22] = new list("Santa Ana", "CA", "http://www.1stSantaAnaGuide.com");
CA[23] = new list("Stockston", "CA", "http://www.1stStockstonGuide.com");
CO[0] = new list("Aspen", "CO", "http://www.1stAspenGuide.com");
CO[1] = new list("Aurora", "CO", "http://www.1stAuroraGuide.com");
CO[2] = new list("Boulder", "CO", "http://www.1stBoulderGuide.com");
CO[3] = new list("Colorado Springs", "CO", "http://www.1stColoradoSpringsGuide.com");
CO[4] = new list("Denver", "CO", "http://www.1stDenverGuide.com");
CO[5] = new list("Vail", "CO", "http://www.1stVailGuide.com");
CT[0] = new list("Hartford", "CT", "http://www.1stHartfordGuide.com");
DC[0] = new list("Washington DC", "DC", "http://www.1stWashingtonDCGuide.com");
DE[0] = new list("Dover", "DE", "http://www.1stDoverGuide.com");
FL[0] = new list("Fort Lauderdale", "FL", "http://www.1stFortLauderdaleGuide.com");
FL[1] = new list("Hialeah", "FL", "http://www.1stHialeahGuide.com");
FL[2] = new list("Jacksonville", "FL", "http://www.1stJacksonvilleGuide.com");
FL[3] = new list("Miami", "FL", "http://www.1stMiamiGuide.com");
FL[4] = new list("Orlando", "FL", "http://www.1stOrlandoGuide.com");
FL[5] = new list("Sarasota", "FL", "http://www.1stSarasotaGuide.com");
FL[6] = new list("St Petersburg", "FL", "http://www.1stStPetersburgGuide.com");
FL[7] = new list("Tallahassee", "FL", "http://www.1stTallahasseeGuide.com");
FL[8] = new list("Tampa", "FL", "http://www.1stTampaGuide.com");
GA[0] = new list("Atlanta", "GA", "http://www.1stAtlantaGuide.com");
GA[1] = new list("Augusta", "GA", "http://www.1stAugustaGuide.com");
GA[2] = new list("Savannah", "GA", "http://www.1stSavannahGuide.com");
HI[0] = new list("Honolulu", "HI", "http://www.1stHonoluluGuide.com");
IA[0] = new list("Cedar Rapids", "IA", "http://www.1stCedarRapidsGuide.com");
IA[1] = new list("Des Moines", "IA", "http://www.1stDesMoinesGuide.com");
IA[2] = new list("Dubuque", "IA", "http://www.1stDubuqueGuide.com");
ID[0] = new list("Boise", "ID", "http://www.1stBoiseGuide.com");
IL[0] = new list("Chicago", "IL", "http://www.1stChicagoGuide.com");
IL[1] = new list("Rockford", "IL", "http://www.1stRockfordGuide.com");
IN[0] = new list("Fort Wayne", "IN", "http://www.1stFortWayneGuide.com");
IN[1] = new list("Indianapolis", "IN", "http://www.1stIndianapolisGuide.com");
KS[0] = new list("Topeka", "KS", "http://www.1stTopekaGuide.com");
KS[1] = new list("Wichita", "KS", "http://www.1stWichitaGuide.com");
KY[0] = new list("Lexington", "KY", "http://www.1stLexingtonGuide.com");
KY[1] = new list("Louisville", "KY", "http://www.1stLouisvilleGuide.com");
LA[0] = new list("Baton Rouge", "LA", "http://www.1stBatonRougeGuide.com");
LA[1] = new list("New Orlenas", "LA", "http://www.1stNewOrlenasGuide.com");
LA[2] = new list("Shreveport", "LA", "http://www.1stShreveportGuide.com");
MA[0] = new list("Boston", "MA", "http://www.1stBostonGuide.com");
MD[0] = new list("Baltimore", "MD", "http://www.1stBaltimoreGuide.com");
ME[0] = new list("Portland", "ME", "http://www.1stPortlandGuide.com");
MI[0] = new list("Detroit", "MI", "http://www.1stDetroitGuide.com");
MI[1] = new list("Flint", "MI", "http://www.1stFlintGuide.com");
MI[2] = new list("Grand Rapids", "MI", "http://www.1stGrandRapidsGuide.com");
MN[0] = new list("Minneapolis", "MN", "http://www.1stMinneapolisGuide.com");
MN[1] = new list("St Paul", "MN", "http://www.1stStPaulGuide.com");
MO[0] = new list("Branson", "MO", "http://www.1stBransonGuide.com");
MO[1] = new list("Kansas City", "MO", "http://www.1stKansasCityGuide.com");
MO[2] = new list("St. Louis", "MO", "http://www.1stSt.LouisGuide.com");
MS[0] = new list("Biloxi", "MS", "http://www.1stBiloxiGuide.com");
MT[0] = new list("Great Falls", "MT", "http://www.1stGreatFallsGuide.com");
NC[0] = new list("Charlotte", "NC", "http://www.1stCharlotteGuide.com");
NC[1] = new list("Durham", "NC", "http://www.1stDurhamGuide.com");
NC[2] = new list("Greensboro", "NC", "http://www.1stGreensboroGuide.com");
NC[3] = new list("Raleigh", "NC", "http://www.1stRaleighGuide.com");
NC[4] = new list("Winston Salem", "NC", "http://www.1stWinstonSalemGuide.com");
ND[0] = new list("Bismarck", "ND", "http://www.1stBismarckGuide.com");
NE[0] = new list("Lincoln", "NE", "http://www.1stLincolnGuide.com");
NE[1] = new list("Omaha", "NE", "http://www.1stOmahaGuide.com");
NH[0] = new list("Manchester", "NH", "http://www.1stManchesterGuide.com");
NJ[0] = new list("AtlanticCity", "NJ", "http://www.1stAtlanticCityGuide.com");
NJ[1] = new list("Newark", "NJ", "http://www.1stNewarkGuide.com");
NM[0] = new list("Albuquerque", "NM", "http://www.1stAlbuquerqueGuide.com");
NV[0] = new list("Henderson", "NV", "http://www.1stHendersonGuide.com");
NV[1] = new list("Lake Tahoe", "NV", "http://www.1stLakeTahoeGuide.com");
NV[2] = new list("Las Vegas #1", "NV", "http://www.insidervlv.com");
NV[3] = new list("Las Vegas #2", "NV", "http://www.1stLasVegasGuide.com");
NV[4] = new list("Laughlin", "NV", "http://www.1stLaughlinGuide.com");
NV[5] = new list("Mesquite", "NV", "http://www.1stMesquiteGuide.com");
NV[6] = new list("Reno", "NV", "http://www.1stRenoGuide.com");
NY[0] = new list("Buffalo", "NY", "http://www.1stBuffaloGuide.com");
NY[1] = new list("New York City", "NY", "http://www.1stNewYorkCityGuide.com");
NY[2] = new list("Rochester", "NY", "http://www.1stRochesterGuide.com");
NY[3] = new list("Syracuse", "NY", "http://www.1stSyracuseGuide.com");
NY[4] = new list("Yonkers", "NY", "http://www.1stYonkersGuide.com");
OH[0] = new list("Akron", "OH", "http://www.1stAkronGuide.com");
OH[1] = new list("Cincinnati", "OH", "http://www.1stCincinnatiGuide.com");
OH[2] = new list("Cleveland", "OH", "http://www.1stClevelandGuide.com");
OH[3] = new list("Columbus", "OH", "http://www.1stColumbusGuide.com");
OH[4] = new list("Dayton", "OH", "http://www.1stDaytonGuide.com");
OH[5] = new list("Toledo", "OH", "http://www.1stToledoGuide.com");
OK[0] = new list("Oklahoma City", "OK", "http://www.1stOklahomaCityGuide.com");
OK[1] = new list("Tulsa", "OK", "http://www.1stTulsaGuide.com");
OR[0] = new list("Eugene", "OR", "http://www.1stEugeneGuide.com");
OR[1] = new list("Portland", "OR", "http://www.1stPortlandGuide.com");
PA[0] = new list("Philadelphia", "PA", "http://www.1stPhiladelphiaGuide.com");
PA[1] = new list("Pittsburgh", "PA", "http://www.1stPittsburghGuide.com");
PR[0] = new list("San Juan", "PR", "http://www.1stSanJuanGuide.com");
RI[0] = new list("Providence", "RI", "http://www.1stProvidenceGuide.com");
SC[0] = new list("Columbia", "SC", "http://www.1stColumbiaGuide.com");
SC[1] = new list("Hilton Head", "SC", "http://www.1stHiltonHeadGuide.com");
SD[0] = new list("Sioux Falls", "SD", "http://www.1stSiouxFallsGuide.com");
TN[0] = new list("Chattanooga", "TN", "http://www.1stChattanoogaGuide.com");
TN[1] = new list("Knoxville", "TN", "http://www.1stKnoxvilleGuide.com");
TN[2] = new list("Memphis", "TN", "http://www.1stMemphisGuide.com");
TN[3] = new list("Nashville", "TN", "http://www.1stNashvilleGuide.com");
TX[0] = new list("Amarillo", "TX", "http://www.1stAmarilloGuide.com");
TX[1] = new list("Arlington", "TX", "http://www.1stArlingtonGuide.com");
TX[2] = new list("Austin", "TX", "http://www.1stAustinGuide.com");
TX[3] = new list("CorpusChristi", "TX", "http://www.1stCorpusChristiGuide.com");
TX[4] = new list("Dallas", "TX", "http://www.1stDallasGuide.com");
TX[5] = new list("El Paso", "TX", "http://www.1stElPasoGuide.com");
TX[6] = new list("Fort Worth", "TX", "http://www.1stFortWorthGuide.com");
TX[7] = new list("Garland", "TX", "http://www.1stGarlandGuide.com");
TX[8] = new list("Houston", "TX", "http://www.1stHoustonGuide.com");
TX[9] = new list("Irving", "TX", "http://www.1stIrvingGuide.com");
TX[10] = new list("Laredo", "TX", "http://www.1stLaredoGuide.com");
TX[11] = new list("Lubbock", "TX", "http://www.1stLubbockGuide.com");
TX[12] = new list("Plano", "TX", "http://www.1stPlanoGuide.com");
TX[13] = new list("San Antonio", "TX", "http://www.1stSanAntonioGuide.com");
UT[0] = new list("Provo", "UT", "http://www.1stProvoGuide.com");
UT[1] = new list("Salt Lake City", "UT", "http://www.1stSaltLakeCityGuide.com");
VA[0] = new list("Chesapeake", "VA", "http://www.1stChesapeakeGuide.com");
VA[1] = new list("Newport News", "VA", "http://www.1stNewportNewsGuide.com");
VA[2] = new list("Norfolk", "VA", "http://www.1stNorfolkGuide.com");
VA[3] = new list("Richmond", "VA", "http://www.1stRichmondGuide.com");
VA[4] = new list("Virginia Beach", "VA", "http://www.1stVirginiaBeachGuide.com");
VT[0] = new list("Burlington", "VT", "http://www.1stBurlingtonGuide.com");
WA[0] = new list("Seattle", "WA", "http://www.1stSeattleGuide.com");
WA[1] = new list("Spokane", "WA", "http://www.1stSpokaneGuide.com");
WA[2] = new list("Tacoma", "WA", "http://www.1stTacomaGuide.com");
WI[0] = new list("Green Bay", "WI", "http://www.1stGreenBayGuide.com");
WI[1] = new list("Madison", "WI", "http://www.1stMadisonGuide.com");
WI[2] = new list("Milwaukee", "WI", "http://www.1stMilwaukeeGuide.com");
WV[0] = new list("Charleston", "WV", "http://www.1stCharlestonGuide.com");
WY[0] = new list("Cheyenne", "WY", "http://www.1stCheyenneGuide.com");
Australia[0] = new list("Sydney", "Australia", "http://www.1stSydneyGuide.com");
Austria[0] = new list("Vienna", "Austria", "http://www.1stViennaGuide.com");
Bahamas[0] = new list("Nassau", "Bahamas", "http://www.1stNassauGuide.com");
Belgium[0] = new list("Brussels", "Belgium", "http://www.1stBrusselsGuide.com");
Brazil[0] = new list("Sao Paulo", "Brazil", "http://www.1stSaoPauloGuide.com");
Canada[0] = new list("Calgary", "Canada", "http://www.1stCalgaryGuide.com");
Canada[1] = new list("Edmonton", "Canada", "http://www.1stEdmontonGuide.com");
Canada[2] = new list("Montreal", "Canada", "http://www.1stMontrealGuide.com");
Canada[3] = new list("Ontario", "Canada", "http://www.1stOntarioGuide.com");
Canada[4] = new list("Ottawa", "Canada", "http://www.1stOttawaGuide.com");
Canada[5] = new list("Quebec", "Canada", "http://www.1stQuebecGuide.com");
Canada[6] = new list("Toronto", "Canada", "http://www.1stTorontoGuide.com");
Canada[7] = new list("Vancouver", "Canada", "http://www.1stVancouverGuide.com");
Canada[8] = new list("Winnipeg", "Canada", "http://www.1stWinnipegGuide.com");
Columbia[0] = new list("Bogota", "Columbia", "http://www.1stBogotaGuide.com");
Egypt[0] = new list("Cairo", "Egypt", "http://www.1stCairoGuide.com");
England[0] = new list("London", "England", "http://www.1stLondonGuide.com");
Finland[0] = new list("Helsinki", "Finland", "http://www.1stHelsinkiGuide.com");
France[0] = new list("Paris", "France", "http://www.1stParisGuide.com");
Germany[0] = new list("Berlin", "Germany", "http://www.1stBerlinGuide.com");
Germany[1] = new list("Frankfurt", "Germany", "http://www.1stFrankfurtGuide.com");
Greece[0] = new list("Athens", "Greece", "http://www.1stAthensGuide.com");
Hongkong[0] = new list("Hong Kong", "Hongkong", "http://www.1stHongKongGuide.com");
Hungary[0] = new list("Budapest", "Hungary", "http://www.1stBudapestGuide.com");
Iceland[0] = new list("Reykjavik", "Iceland", "http://www.1stReykjavikGuide.com");
India[0] = new list("Bombay", "India", "http://www.1stBombayGuide.com");
India[1] = new list("Mumbai", "India", "http://www.1stMumbaiGuide.com");
Ireland[0] = new list("Dublin", "Ireland", "http://www.1stDublinGuide.com");
Italy[0] = new list("Milan", "Italy", "http://www.1stMilanGuide.com");
Italy[1] = new list("Rome", "Italy", "http://www.1stRomeGuide.com");
Japan[0] = new list("Tokyo", "Japan", "http://www.1stTokyoGuide.com");
Korea[0] = new list("Seoul", "Korea", "http://www.1stSeoulGuide.com");
Mexico[0] = new list("Mexico City", "Mexico", "http://www.1stMexicoCityGuide.com");
Monaco[0] = new list("Monte Carlo", "Monaco", "http://www.1stMonteCarloGuide.com");
Netherlands[0] = new list("Amsterdam", "Netherlands", "http://www.1stAmsterdamGuide.com");
NewZealand[0] = new list("Auckland", "NewZealand", "http://www.1stAucklandGuide.com");
Norway[0] = new list("Oslo", "Norway", "http://www.1stOsloGuide.com");
Peru[0] = new list("Lima", "Peru", "http://www.1stLimaGuide.com");
Philippines[0] = new list("Manila", "Philippines", "http://www.1stManilaGuide.com");
Russia[0] = new list("Moscow", "Russia", "http://www.1stMoscowGuide.com");
Singapore[0] = new list("Singapore", "Singapore", "http://www.1stSingaporeGuide.com");
Spain[0] = new list("Madrid", "Spain", "http://www.1stMadridGuide.com");
Sweden[0] = new list("Stockholm", "Sweden", "http://www.1stStockholmGuide.com");
Switzerland[0] = new list("Zurich", "Switzerland", "http://www.1stZurichGuide.com");
/**** STOP  statelist.wri ****/

