// JavaScript Document

    
function initialize() {
      if (GBrowserIsCompatible()) {
        
		
//load map and set global variables...
		var map = new GMap2(document.getElementById("map_canvas"));
        map.setCenter(new GLatLng(29.705947,-96.540127), 7);
        map.setUIToDefault();
 
        // Create a base icon for all of our markers that specifies the
        // shadow, icon dimensions, etc.
        var baseIcon = new GIcon(G_DEFAULT_ICON);
        baseIcon.shadow = "http://www.google.com/mapfiles/shadow50.png";
        baseIcon.iconSize = new GSize(20, 34);
        baseIcon.shadowSize = new GSize(37, 34);
        baseIcon.iconAnchor = new GPoint(9, 34);
        baseIcon.infoWindowAnchor = new GPoint(9, 2);

        //set bounds
        var bounds = map.getBounds();
        var southWest = bounds.getSouthWest();
        var northEast = bounds.getNorthEast();
        var lngSpan = northEast.lng() - southWest.lng();
        var latSpan = northEast.lat() - southWest.lat();

//end load map and set global variables... 
     
		
		
		
		
//create markers....	
   function createMarkers(lat, long, html, markercolor) {

        //load passed in variables
	    var Point = new GLatLng(lat, long);
		var HTML = html;
		var markerColor = markercolor;
		var Icon = new GIcon(G_DEFAULT_ICON);
		
		if (markerColor == 'ORANGE') {
            Icon.image = "http://www.grantworks.net/GoogleMap/orangemarker.png";
		
		} else if (markerColor == 'ORANGE_CO') {
		    Icon.image = "http://www.grantworks.net/GoogleMap/orangemarker_co.png";	
		} else if (markerColor == 'BLUE') {
		    Icon.image = "http://www.grantworks.net/GoogleMap/bluemarker.png";	
		} else if (markerColor == 'BLUE_CO') {
		    Icon.image = "http://www.grantworks.net/GoogleMap/bluemarker_co.png";	
		} else if (markerColor == 'RED') {
		    Icon.image = "http://www.grantworks.net/GoogleMap/redmarker.png";		
		} else if (markerColor == 'RED_CO') {
		    Icon.image = "http://www.grantworks.net/GoogleMap/redmarker_co.png";		
		}  else {
		//use generic...
		Icon.image = "http://www.grantworks.net/GoogleMap/redmarker.png";	
		}
		
          // Set up our GMarkerOptions object
          markerOptions = { icon:Icon };
          var marker = new GMarker(Point, markerOptions);
          
		  //create marker with point info and html...
          GEvent.addListener(marker, "click", function() {
            marker.openInfoWindowHtml(HTML);
          });
		  
          return marker;
        }
//end create markers....	
		

		
        //set Arrays to hold Google Map Data
        var Lat=new Array();
		var Long=new Array();
		var Html=new Array();

		//Load google map data from loader functions below
		Lat = getMapData_OrangeLats();
		Long = getMapData_OrangeLongs();
        Html = getMapData_OrangeHTMLs();
		
		//loop through all the orange points...
		var MarkerColor = "ORANGE";
		var NumberOfOrange = 53;
		for (var i = 2; i <= NumberOfOrange; i++) {
			
		if (i == 5 || i == 10 || i == 11 || i == 12 || i == 24 || i == 25 || i == 26 || i == 32 || i == 40 || i == 43)  {
			MarkerColor = "ORANGE_CO";
		} else {
			MarkerColor = "ORANGE";
		}
			
		  map.addOverlay(createMarkers(Lat[i], Long[i], Html[i], MarkerColor));
		}
		
		
		//Load google map data from loader functions below
		Lat = getMapData_BlueLats();
		Long = getMapData_BlueLongs();
        Html = getMapData_BlueHTMLs();
		
		//loop through all the orange points...
		var MarkerColor = "BLUE";
		var NumberOfBlue = 69;
		for (var i = 2; i <= NumberOfBlue; i++) {
			
		if (i == 14 || i == 15 || i == 19 || i == 26 || i == 33 || i == 54 || i == 65 || i == 66)  {
			MarkerColor = "BLUE_CO";
		} else {
			MarkerColor = "BLUE";
		}	
			
		  map.addOverlay(createMarkers(Lat[i], Long[i], Html[i], MarkerColor));
		}
		
		
		
		//Load google map data from loader functions below
		Lat = getMapData_OtherLats();
		Long = getMapData_OtherLongs();
        Html = getMapData_OtherHTMLs();
		
		//loop through all the orange points...
		var MarkerColor = "BLUE";
		var NumberOfOther = 155;
		for (var i = 2; i <= NumberOfOther; i++) {
			
		 if (i == 9 || i == 12 || i == 14 || i == 22 || i == 26 || i == 28 || i == 30 || i == 33 || i == 35 
			 || i == 37 || i == 38 || i == 41 || i == 44 || i == 45 || i == 46 || i == 59 || i == 61 
			 || i == 64 || i == 65 || i == 67 || i == 70 || i == 72 || i == 73 || i == 77 || i == 78 
			 || i == 80 || i == 83 || i == 85 || i == 90 || i == 94 || i == 95 || i == 97 || i == 98 
			 || i == 100 || i == 102 || i == 104 || i == 105 || i == 106 || i == 114 || i == 116 || i == 120 
			 || i == 121 || i == 128 || i == 137 || i == 138 || i == 142 || i == 146 || i == 151)  {
			MarkerColor = "BLUE_CO";
		} else {
			MarkerColor = "BLUE";
		}		
			
		  map.addOverlay(createMarkers(Lat[i], Long[i], Html[i], MarkerColor));
		}
		
		
		
      }
	  
//get map data functions... quick & dirty... better way would be to pull from xls
//indexes correspond to spreadsheet rows.
	 
//Orange Latitudes-----------------	 
	 function getMapData_OrangeLats() {
		  var Lats_Temp=new Array();
		  
		  Lats_Temp[2] = 31.650626;
		  Lats_Temp[3] = 29.427279;
		  Lats_Temp[4] = 29.168633;
		  
		  Lats_Temp[5] = 28.081674;
		  
		  Lats_Temp[6] = 27.899228;
		  Lats_Temp[7] = 29.32549;
		  Lats_Temp[8] = 28.09577;
		  Lats_Temp[9] = 29.044164;
		  
		  Lats_Temp[10] = 29.267233;
		  Lats_Temp[11] = 27.048119;
		  Lats_Temp[12] = 28.444544;
		  
		  Lats_Temp[13] = 29.023791;
		  Lats_Temp[14] = 29.227233;
		  Lats_Temp[15] = 31.62769;
		  Lats_Temp[16] = 28.953497;
		  Lats_Temp[17] = 28.071351;
		  Lats_Temp[18] = 29.790682;
		  Lats_Temp[19] = 29.294159;
		  Lats_Temp[20] = 29.207989;
		  Lats_Temp[21] = 32.997099;
		  Lats_Temp[22] = 29.991907;
		  Lats_Temp[23] = 29.192087;
		  
		  Lats_Temp[24] = 29.826348;
		  Lats_Temp[25] = 27.785632;
		  Lats_Temp[26] = 27.435165;
		 
		  Lats_Temp[27] = 29.66832;
		  Lats_Temp[28] = 29.048089;
		  Lats_Temp[29] = 29.301631;
		  Lats_Temp[30] = 26.073566
		  Lats_Temp[31] = 29.477117;
		  
		  Lats_Temp[32] = 28.827832;
		  
		  Lats_Temp[33] = 28.996402;
		  Lats_Temp[34] = 28.719643;
		  Lats_Temp[35] = 28.670019;
		  Lats_Temp[36] = 27.82635;
		  Lats_Temp[37] = 28.619904;
		  Lats_Temp[38] = 27.358295;
		  Lats_Temp[39] = 28.922751;
		  
		  Lats_Temp[40] = 28.362402;
		  
		  Lats_Temp[41] = 29.060027;
		  Lats_Temp[42] = 28.044536;
		  
		  Lats_Temp[43] = 28.001677;
		  
		  Lats_Temp[44] = 29.386039;
		  Lats_Temp[45] = 28.414735
		  Lats_Temp[46] = 28.954596;
		  Lats_Temp[47] = 29.045485;
		  Lats_Temp[48] = 29.452857;
		  Lats_Temp[49] = 29.297376;
		  Lats_Temp[50] = 30.948386;
		  Lats_Temp[51] = 30.058642;
		  Lats_Temp[52] = 32.47827;
		  Lats_Temp[53] = 29.142311;
		 
		  
		  return Lats_Temp;
		  }
//End Latitudes------------------
	
//Orange Longs-----------------	
	  function getMapData_OrangeLongs() {
		  var Longs_Temp=new Array();
		  
		  Longs_Temp[2] = -95.072102;
		  Longs_Temp[3] = -95.252174;
		  Longs_Temp[4] = -95.427745;
		  
		  Longs_Temp[5] = -96.961212;
		  
		  Longs_Temp[6] = -97.141579;
		  Longs_Temp[7] = -94.938968;
		  Longs_Temp[8] = -97.211702;
		  Longs_Temp[9] = -95.567322;
		  
		  Longs_Temp[10] = -95.468445;
		  Longs_Temp[11] = -98.227386;
		  Longs_Temp[12] = -96.660461;
		  
		  Longs_Temp[13] = -95.403277;
		  Longs_Temp[14] = -95.34616;
		  Longs_Temp[15] = -95.577926;
		  Longs_Temp[16] = -95.369097;
		  Longs_Temp[17] = -97.038599;
		  Longs_Temp[18] = -95.488482;
		  Longs_Temp[19] = -95.007937;
		  Longs_Temp[20] = -95.513009;
		  Longs_Temp[21] = -94.630685;
		  Longs_Temp[22] = -95.265584;
		  Longs_Temp[23] = -94.98118;
		  
		  Longs_Temp[24] = -94.152832;
		  Longs_Temp[25] = -98.044739;
		  Longs_Temp[26] = -97.701416;
		  
		  Longs_Temp[27] = -95.047842;
		  Longs_Temp[28] = -95.449953;
		  Longs_Temp[29] = -95.274318;
		  Longs_Temp[30] = -97.475646;
		  Longs_Temp[31] = -95.363949;
		  
		  Longs_Temp[32] = -95.979309;
		  
		  Longs_Temp[33] = -95.328419;
		  Longs_Temp[34] = -96.235297;
		  Longs_Temp[35] = -96.55933;
		  Longs_Temp[36] = -97.074908;
		  Longs_Temp[37] = -96.628962;
		  Longs_Temp[38] = -98.124126;
		  Longs_Temp[39] = -95.31523;
		  
		  Longs_Temp[40] = -97.14386;
		  
		  Longs_Temp[41] = -95.409387;
		  Longs_Temp[42] = -97.055825;
		  
		  Longs_Temp[43] = -97.516022;
	
		  Longs_Temp[44] = -95.102798;
		  Longs_Temp[45] = -96.716059;
		  Longs_Temp[46] = -95.284922;
		  Longs_Temp[47] = -95.698887;
		  Longs_Temp[48] = -94.898607;
		  Longs_Temp[49] = -94.915073;
		  Longs_Temp[50] = -95.373767;
		  Longs_Temp[51] = -95.922848;
		  Longs_Temp[52] = -94.065867;
		  Longs_Temp[53] = -95.649151;
		  
		  return Longs_Temp;
		  }
//End Longs-----------------	  
	  
//Orange HTMLs-----------------	
	  function getMapData_OrangeHTMLs() {
		  var HTMLs_Temp=new Array();
		  
		  HTMLs_Temp[2] = "<div style='width:225px;'><b>Alto</b><br/>Project Type: Round 1 DRS<br/>Grant Amount: $372,610<br/>Installation of diesel-powered generators at lift stations and associated appurtenances and installation of automatic <br/>transfer switches at three water treatment plants and a <br/>wastewater treatment plant.<br/></div>";
		  
		  HTMLs_Temp[3] = "<div style='width:225px;'><b>Alvin</b><br/>Project Type: Round 1 DRS<br/>Grant Amount: $719,881<br/> Installation of generators at water plants; SCADA and central radio tower. <br/></div>";
		  HTMLs_Temp[4] = "<div style='width:225px;'><b>Angleton</b><br/>Project Type: Round 1 DRS<br/>Grant Amount: $519,881<br/> Installation of generator at wwtp; fuel tank with enclosure. <br/></div>";
		  HTMLs_Temp[5] = "<div style='width:225px;'><b>Aransas County</b><br/>Project Type: Round 1 DRS<br/>Grant Amount: $1,000,000<br/>  <br/></div>";
		  HTMLs_Temp[6] = "<div style='width:225px;'><b>Aransas Pass</b><br/>Project Type: Round 1 DRS<br/>Grant Amount: $259,331<br/> Remove and replace existing bulkhead and cap and installation of new fill material at Conn Brown Harbor. <br/></div>";
		  HTMLs_Temp[7] = "<div style='width:225px;'><b>Bayou Vista</b><br/>Project Type: Round 1 DRS<br/>Grant Amount: $1,672,036<br/> Installation of 3 generators, street repairs, and storm drainage rehabilitation. <br/></div>";
		  HTMLs_Temp[8] = "<div style='width:225px;'><b>Bayside</b><br/>Project Type: Round 1 DRS<br/>Grant Amount: $166,666<br/> Bank stabilization and bulkhead renovation along Copano Bay <br/></div>";
		  HTMLs_Temp[9] = "<div style='width:225px;'><b>Brazoria</b><br/>Project Type: Round 1 DRS<br/>Grant Amount: $175,500<br/> Flood and drainage improvements in South Rockport and Doughty-Mathis colonia.<br/></div>";
		  HTMLs_Temp[10] = "<div style='width:225px;'><b>Brazoria County</b><br/>Project Type: Round 1 DRS<br/>Grant Amount: $8,704,745<br/> Installation of generators and other improvements at various water plants, lift stations, wastewater treatment plants, operation/control centers and fire stations in Brazoria County. <br/></div>";
		  HTMLs_Temp[11] = "<div style='width:225px;'><b>Brooks County</b><br/>Project Type: Round 1 DRS<br/>Grant Amount: $75,000<br/> Installation of 125kw generator with manual switch, fuel tank and concrete pad at the Encino Water Plant, Brooks County. <br/></div>";
		  HTMLs_Temp[12] = "<div style='width:225px;'><b>Calhoun County</b><br/>Project Type: Round 1 DRS<br/>Grant Amount: $166,667<br/> Street improvements to include installation of roadway embankment, road base, and associated drainage pipes and flumes along Ocean Drive. <br/></div>";
		  HTMLs_Temp[13] = "<div style='width:225px;'><b>Clute</b><br/>Project Type: Round 1 DRS<br/>Grant Amount: $416,500<br/> Installation of generators at 4 lift stations. <br/></div>";
		  HTMLs_Temp[14] = "<div style='width:225px;'><b>Danbury</b><br/>Project Type: Round 1 DRS<br/>Grant Amount: $168,500<br/> Installation of manual transfer switches at 2 lift stations. <br/></div>";
		  HTMLs_Temp[15] = "<div style='width:225px;'><b>Elkhart</b><br/>Project Type: Round 1 DRS<br/>Grant Amount: $267,995<br/> Installation of diesel-powered generators with automatic transfer switched, pad for mounting and associated appurtenances at water plant and wastewater treatment plant. <br/></div>";
		  HTMLs_Temp[16] = "<div style='width:225px;'><b>Freeport</b><br/>Project Type: Round 1 DRS<br/>Grant Amount: $554,001<br/> Rehabilitation of a lift station. <br/></div>";
		  HTMLs_Temp[17] = "<div style='width:225px;'><b>Fulton</b><br/>Project Type: Round 1 DRS<br/>Grant Amount: $155,403<br/> Street improvements to include installation of hot mix asphalt, prime coat, cement stabilization, and excavation of roadside ditches on Fulton Beach Road. <br/></div>";
		  HTMLs_Temp[18] = "<div style='width:225px;'><b>Hilshire Village</b><br/>Project Type: Round 1 DRS<br/>Grant Amount: $229,980<br/> Installation of flood and drainage activities including replacement of culverts, re-grading of ditches, and installation of sod in the Pine Chase Drive target area. <br/></div>";
		  HTMLs_Temp[19] = "<div style='width:225px;'><b>Hitchcock</b><br/>Project Type: Round 1 DRS<br/>Grant Amount: $2,888,164<br/> Installation of generators, quick connects and transfer switches at wastewater treatment plants and lift stations in Hitchcock. Improvements to the Blimp Base Water Plant which include a new ground storage tank, hydro-pneumatic tank, service pumps, generator and the rehabilitation of existing water well. <br/></div>";
		  HTMLs_Temp[20] = "<div style='width:225px;'><b>Holiday Lakes</b><br/>Project Type: Round 1 DRS<br/>Grant Amount: $163,500<br/> Installation of a generator at the water plant. <br/></div>";
		  HTMLs_Temp[21] = "<div style='width:225px;'><b>Hughes Springs</b><br/>Project Type: Round 1 DRS<br/>Grant Amount: $94,755<br/> First time sewer on Bruce & Yancy Streets. <br/></div>";
		  HTMLs_Temp[22] = "<div style='width:225px;'><b>Humble</b><br/>Project Type: Round 1 DRS<br/>Grant Amount: $574,664<br/> Installation of auxiliary diesel-fuel storage tank and four natural gas-fueled pumps at critical sewer facilities. Installation of flood and drainage improvements including storm drain inlets and manholes, HDPE pipe, and road repair in the Statti Street target area. <br/></div>";
		  HTMLs_Temp[23] = "<div style='width:225px;'><b>Jamaica Beach</b><br/>Project Type: Round 1 DRS<br/>Grant Amount: $2,195,385<br/> Street Improvements consisting of pavement reconstruction, driveway repairs and cross streets; Drainage Improvements constructing articulated concrete block ditches, re-grading of road side bar ditch and replacement of street and driveway culverts. <br/></div>";
		  HTMLs_Temp[24] = "<div style='width:225px;'><b>Jefferson County</b><br/>Project Type: Rita DRS - HOME<br/>Grant Amount: $2,000,000<br/> 36 Site-built homes completed and the contract was closed-out before any other entity built a single site-built home for Rita DR. <br/></div>";
		  HTMLs_Temp[25] = "<div style='width:225px;'><b>Jim Wells County</b><br/>Project Type: Round 1 DRS<br/>Grant Amount: $252,270<br/> Installation of one 150 kW diesel-fueled generator including foundation, automatic transfer switch, electrical connections, and appurtenances at Premont Water Plant.  Installation of one 200 kW diesel-fueled generator, including  foundation, automatic transfer switch, electrical connections, and appurtenances at Premont Main Lift Station site. <br/></div>";
		  HTMLs_Temp[26] = "<div style='width:225px;'><b>Kleberg County</b><br/>Project Type: Round 1 DRS<br/>Grant Amount: $183,117<br/> Street improvements.<br/></div>";
		  
		  HTMLs_Temp[27] = "<div style='width:225px;'><b>La Porte</b><br/>Project Type: Round 1 DRS<br/>Grant Amount: $1,599,995<br/>Installation of three generators at critical sewer facilities and nine transfer switches at critical water and sewer facilities. Installation of flood and drainage improvements including storm drain inlets, HDPE culvert,  reinforced concrete box culverts, and road and ditch repair in the Oakhurst target area. <br/></div>";
		  HTMLs_Temp[28] = "<div style='width:225px;'><b>Lake Jackson</b><br/>Project Type: Round 1 DRS<br/>Grant Amount: $213,750<br/> Installation of two generators at lift stations. <br/></div>";
		  HTMLs_Temp[29] = "<div style='width:225px;'><b>Liverpool</b><br/>Project Type: Round 1 DRS<br/>Grant Amount: $163,500<br/> Installation of a generator at the water plant. <br/></div>";
		  HTMLs_Temp[30] = "<div style='width:225px;'><b>Los Fresnos</b><br/>Project Type: Round 1 DRS<br/>Grant Amount: $176,408<br/> Installation of 100 LF of 36in. RCP drainage pipe and 2 safety end treatments at the Union Pacific Railroad crossing at W. 10th St. <br/></div>";
		  HTMLs_Temp[31] = "<div style='width:225px;'><b>Manvel</b><br/>Project Type: Round 1 DRS<br/>Grant Amount: $465,500<br/> Installation of generators at wastewater treatment plant and installation of two generators and three manual transfer switches at lift stations. <br/></div>";
		  HTMLs_Temp[32] = "<div style='width:225px;'><b>Matagorda County</b><br/>Project Type: Round 1 DRS<br/>Grant Amount: $4,818,816<br/> Generators and transfer switches at Sargent Water Plant No.1 and No.2. Flood and drainage improvements including the replacement of bulkhead in Port of Palacios and Town of Matagorda. Public facility improvements including restoration of  Sargent Beach.<br/></div>";
		  HTMLs_Temp[33] = "<div style='width:225px;'><b>Oyster Creek</b><br/>Project Type: Round 1 DRS<br/>Grant Amount: $166,500<br/> Installation of generators at wastewater treatment plant. <br/></div>";
		  HTMLs_Temp[34] = "<div style='width:225px;'><b>Palacios</b><br/>Project Type: Round 1 DRS<br/>Grant Amount: $0<br/> Port facilities (part of Matagorda County's program). <br/></div>";
		  HTMLs_Temp[35] = "<div style='width:225px;'><b>Point Comfort</b><br/>Project Type: Round 1 DRS<br/>Grant Amount: $166,666<br/> Dredge and remove silt material from the Point Comfort Harbor and Channel. <br/></div>";
		  HTMLs_Temp[36] = "<div style='width:225px;'><b>Port Aransas</b><br/>Project Type: Round 1 DRS<br/>Grant Amount: $405,336<br/> Flood and drainage improvements including the reconstruction of the existing drainage ditch and culverts system. Public Facility Improvements including raising Beach Access Road 1. <br/></div>";
		  HTMLs_Temp[37] = "<div style='width:225px;'><b>Port Lavaca</b><br/>Project Type: Round 1 DRS<br/>Grant Amount: $166,666<br/> Install bolts along plastic walkway and beach sand installation at Lighthouse Beach Park, installation of timber planking along the breakwater at Nautical Landings Marina, and bulkhead repair at the Port Lavaca City Harbor. <br/></div>";
		  HTMLs_Temp[38] = "<div style='width:225px;'><b>Premont</b><br/>Project Type: Round 1 DRS<br/>Grant Amount: $0<br/> Generators (part of Jim Wells County's program). <br/></div>";
		  HTMLs_Temp[39] = "<div style='width:225px;'><b>Quintana</b><br/>Project Type: Round 1 DRS<br/>Grant Amount: $574,436<br/> Installation of generators at both water plants and 6in. water line connecting both plants; SCADA system. <br/></div>";
		  HTMLs_Temp[40] = "<div style='width:225px;'><b>Refugio County</b><br/>Project Type: Round 1 DRS<br/>Grant Amount: $75,000<br/> Installation of erosion control mat at Bayside Park. <br/></div>";
		  HTMLs_Temp[41] = "<div style='width:225px;'><b>Richwood</b><br/>Project Type: Round 1 DRS<br/>Grant Amount: $116,200<br/> Installation of generator at College Drive lift station. <br/></div>";
		  HTMLs_Temp[42] = "<div style='width:225px;'><b>Rockport</b><br/>Project Type: Round 2.1 DRS<br/>Grant Amount: $1,000,000<br/> Flood and drainage improvements including the purchase and upgrade of an existing storm sewer system. Upgrades include 24in-42in storm sewer pipe, 4'-8' concrete box culverts, road and driveway culverts, junction boxes, End Slope Treatments and concrete headwalls.  Also includes repairs to city streets and state highways, adjustments to impacted water lines, and associated site work. <br/></div>";
		  HTMLs_Temp[43] = "<div style='width:225px;'><b>San Patricio County</b><br/>Project Type: Round 2.1 DRS<br/>Grant Amount: $1,000,000<br/> Flood and drainage improvements including the replacement of an existing low water crossing with a new concrete bridge, reconstruction of roadway, and drainage channel improvements on County Road 60B. <br/></div>";
		  HTMLs_Temp[44] = "<div style='width:225px;'><b>Santa Fe</b><br/>Project Type: Round 1 DRS<br/>Grant Amount: $2,738,741<br/> Water facility improvements including the installation of ground storage tank, water well and elevated storage tank. Replacement of concrete sewer lines as part of the sewer facility improvements activity. <br/></div>";
		  HTMLs_Temp[45] = "<div style='width:225px;'><b>Seadrift</b><br/>Project Type: Round 1 DRS<br/>Grant Amount: $166,667<br/> Installation of one generator at the Wastewater Treatment Plant as well as quick-connect manual transfer switches at four lift stations. <br/></div>";
		  HTMLs_Temp[46] = "<div style='width:225px;'><b>Surfside Beach</b><br/>Project Type: Round 1 DRS<br/>Grant Amount: $579,700<br/> Installation of generators and relocation of well heads, pneumatic tanks, gauges, auto-dialers, and disinfection equipment at the Yucca and Oyster water plants. <br/></div>";
		  HTMLs_Temp[47] = "<div style='width:225px;'><b>Sweeny</b><br/>Project Type: Round 1 DRS<br/>Grant Amount: $351,000<br/> Installation of generators at water wells 3 & 4. <br/></div>";
		  HTMLs_Temp[48] = "<div style='width:225px;'><b>Texas City</b><br/>Project Type: Round 1 DRS<br/>Grant Amount: $4,614,680<br/> Installation of ten generators for critical water and sewer facilities. Installation of flood and drainage improvements including storm drain inlets, reinforced concrete pipe storm sewer, and box culverts. <br/></div>";
		  HTMLs_Temp[49] = "<div style='width:225px;'><b>Tiki Island</b><br/>Project Type: Round 1 DRS<br/>Grant Amount: $1,332,224<br/> Construction of water well with diesel-fueled emergency generator and raised platform, a reverse osmosis facility and a 1500 s.f. expansion of Volunteer Fire Department Building. <br/></div>";
		  HTMLs_Temp[50] = "<div style='width:225px;'><b>Trinity</b><br/>Project Type: Round 1 DRS<br/>Grant Amount: $513,350<br/> Installation of 6 generators and 3 transfer switches. <br/></div>";
		  HTMLs_Temp[51] = "<div style='width:225px;'><b>Waller</b><br/>Project Type: Round 1 DRS<br/>Grant Amount: $229,980<br/> Installation of two generators for City Water Plant and the City Police Station and manual transfer switch at critical sewer facility.<br/></div>";
		  HTMLs_Temp[52] = "<div style='width:225px;'><b>Waskom</b><br/>Project Type: Round 1 DRS<br/>Grant Amount: $297,369<br/> Installation of three generators at two water wells and water plant. <br/></div>";
		  HTMLs_Temp[53] = "<div style='width:225px;'><b>West Columbia</b><br/>Project Type: Round 1 DRS<br/>Grant Amount: $166,520<br/> Installation of generator at Jefferson lift station; manual transfer switches and electrical controls at eight lift stations. <br/></div>";
		  
		  
		  return HTMLs_Temp;
		  }
//End HTMLs-----------------	






//Blue Latitudes-----------------	 
	 function getMapData_BlueLats() {
		  var Lats_Temp=new Array();
		  
		  Lats_Temp[2] = 33.115816;
		  Lats_Temp[3] = 28.390924;
		  Lats_Temp[4] = 32.897834;
		  Lats_Temp[5] = 28.982103;
		  
		  Lats_Temp[6] = 28.400159;
		  
		  Lats_Temp[7] = 32.087974;
		  Lats_Temp[8] = 28.570635;
		  Lats_Temp[9] = 27.585382;
		  Lats_Temp[10] = 33.469883;
		  Lats_Temp[11] = 32.209238;
		  Lats_Temp[12] = 32.552229;
		  Lats_Temp[13] = 28.52648;
		  
		  Lats_Temp[14] = 33.098445;
		  Lats_Temp[15] = 31.814563;
		  
		  Lats_Temp[16] = 30.051629
		  Lats_Temp[17] = 33.610362;
		  Lats_Temp[18] = 32.132714;
		  
		  Lats_Temp[19] = 29.984304;
		  
		  Lats_Temp[20] = 29.705805;
		  Lats_Temp[21] = 30.997793;
		  Lats_Temp[22] = 33.03046;
		  
		  Lats_Temp[23] = 33.508481;
		  
		  Lats_Temp[24] = 33.249409;
		  Lats_Temp[25] = 27.673166;
		  
		  Lats_Temp[26] = 27.749177;
		  
		  Lats_Temp[27] = 29.587335;
		  
		  Lats_Temp[28] = 29.531048;
		  Lats_Temp[29] = 28.975849;
		  Lats_Temp[30] = 27.331828;
		  Lats_Temp[31] = 32.876494;
		  Lats_Temp[32] = 27.882016;
		  
		  Lats_Temp[33] = 29.394141;
		  
		  Lats_Temp[34] = 29.041685;
		  Lats_Temp[35] = 31.8249;
		  Lats_Temp[36] = 27.922448;
		  Lats_Temp[37] = 30.876978;
		  Lats_Temp[38] = 31.279451;
		  Lats_Temp[39] = 27.868156;
		  Lats_Temp[40] = 27.868157;
		  Lats_Temp[41] = 32.222948;
		  Lats_Temp[42] = 32.939309;
		  Lats_Temp[43] = 33.330285;
		  Lats_Temp[44] = 32.274646;
		  Lats_Temp[45] = 31.614843;
		  Lats_Temp[46] = 33.20382;
		  Lats_Temp[47] = 33.442193;
		  Lats_Temp[48] = 32.268558;
		  Lats_Temp[49] = 30.033973;
		  Lats_Temp[50] = 27.946634;
		  Lats_Temp[51] = 27.955839;
		  Lats_Temp[52] = 27.880561;
		  Lats_Temp[53] = 33.150355;
		  
		  Lats_Temp[54] = 32.913027;
		  
		  Lats_Temp[55] = 31.863522;
		  Lats_Temp[56] = 26.235001;
		  Lats_Temp[57] = 31.797729;
		  Lats_Temp[58] = 27.759993;
		  Lats_Temp[59] = 32.533227;
		  Lats_Temp[60] = 29.429839;
		  Lats_Temp[61] = 28.034384;
		  Lats_Temp[62] = 27.980151;
		  Lats_Temp[63] = 31.906686;
		  Lats_Temp[64] = 29.631329;
		  
		  Lats_Temp[65] = 29.394141;
		  Lats_Temp[66] = 26.506218;
		  
		  Lats_Temp[67] = 28.238641;
		  Lats_Temp[68] = 28.238641;
		  Lats_Temp[69] = 30.776794;
		  
		  return Lats_Temp;
		  }
//End Latitudes------------------
	
//Blue Longs-----------------	
	  function getMapData_BlueLongs() {
		  var Longs_Temp=new Array();
		  
		  Longs_Temp[2] = -94.163635;
		  Longs_Temp[3] = -96.843569;
		  Longs_Temp[4] = -94.553979;
		  Longs_Temp[5] = -95.95984;
		  Longs_Temp[6] = -97.747078;
		  Longs_Temp[7] = -95.461271;
		  Longs_Temp[8] = -99.568121;
		  Longs_Temp[9] = -97.797738;
		  Longs_Temp[10] = -95.213369;
		  Longs_Temp[11] = -96.038262;
		  Longs_Temp[12] = -95.863419;
		  Longs_Temp[13] = -99.858388;
		  Longs_Temp[14] = -94.320374;
		  Longs_Temp[15] = -95.127869;
		  Longs_Temp[16] = -94.335159;
		  Longs_Temp[17] = -95.056504;
		  Longs_Temp[18] = -95.506641;
		  Longs_Temp[19] = -97.134247;
		  Longs_Temp[20] = -96.557416;
		  Longs_Temp[21] = -94.825117;
		  Longs_Temp[22] = -94.724599;
		  Longs_Temp[23] = -94.616404;
		  Longs_Temp[24] = -94.116757;
		  Longs_Temp[25] = -97.751096;
		  
		  Longs_Temp[26] = -98.585815;
		  
		  Longs_Temp[27] = -96.328536;
		  Longs_Temp[28] = -96.07235;
		  Longs_Temp[29] = -96.647197;
		  Longs_Temp[30] = -99.502397;
		  Longs_Temp[31] = -95.767099;
		  Longs_Temp[32] = -98.617755;
		  
		  Longs_Temp[33] = -94.858704;
		  
		  Longs_Temp[34] = -96.511322;
		  Longs_Temp[35] = -94.493206;
		  Longs_Temp[36] = -97.291096;
		  Longs_Temp[37] = -96.595812;
		  Longs_Temp[38] = -94.576604;
		  Longs_Temp[39] = -97.201662;
		  Longs_Temp[40] = -97.201662;
		  Longs_Temp[41] = -96.022053;
		  Longs_Temp[42] = -94.709062;
		  Longs_Temp[43] = -94.346484;
		  Longs_Temp[44] = -95.756344;
		  Longs_Temp[45] = -94.650759;
		  Longs_Temp[46] = -94.676023;
		  Longs_Temp[47] = -94.129003;
		  Longs_Temp[48] = -94.926514;
		  Longs_Temp[49] = -94.416805;
		  Longs_Temp[50] = -97.58622;
		  Longs_Temp[51] = -97.937018;
		  Longs_Temp[52] = -97.324603;
		  Longs_Temp[53] = -94.152511;
		  
		  Longs_Temp[54] = -95.770569;
		  
		  Longs_Temp[55] = -94.984428;
		  Longs_Temp[56] = -97.583668;
		  Longs_Temp[57] = -95.148775;
		  Longs_Temp[58] = -98.238834;
		  Longs_Temp[59] = -94.243415;
		  Longs_Temp[60] = -97.17174;
		  Longs_Temp[61] = -97.510603;
		  Longs_Temp[62] = -97.391467;
		  Longs_Temp[63] = -94.397251;
		  Longs_Temp[64] = -96.063904;
		  
		  Longs_Temp[65] = -96.17157;
		  Longs_Temp[66] = -97.704163;
		  
		  Longs_Temp[67] = -97.327375;
		  Longs_Temp[68] = -97.327376;
		  Longs_Temp[69] = -94.423772;
		  
		  return Longs_Temp;
		  }
//End Longs-----------------	  
	  
//Blue HTMLs-----------------	
	  function getMapData_BlueHTMLs() {
		  var HTMLs_Temp=new Array();
		  
		  HTMLs_Temp[2] = "<div style='width:225px;'><b>Atlanta</b><br/>Project Type: 2011 CD<br/>Grant Amount: $275,000<br> Sewer system improvements. <br/></div>";
		  HTMLs_Temp[3] = "<div style='width:225px;'><b>Austwell</b><br/>Project Type: 209 CD<br/>Grant Amount: $300,000<br> Water line improvements. <br/></div>";
		  HTMLs_Temp[4] = "<div style='width:225px;'><b>Avinger</b><br/>Project Type: 2011 DR<br/>Grant Amount: $350,000<br> Street and drainage improvements. <br/></div>";
		  HTMLs_Temp[5] = "<div style='width:225px;'><b>Bay City</b><br/>Project Type: 2010 DR<br/>Grant Amount: $350,000<br> Sewer system improvements. <br/></div>";
		  HTMLs_Temp[6] = "<div style='width:225px;'><b>Beeville</b><br/>Project Type: 2011 CD<br/>Grant Amount: $300,000<br> Water line improvements. <br/></div>";
		  HTMLs_Temp[7] = "<div style='width:225px;'><b>Berryville</b><br/>Project Type: 2008 CD<br/>Grant Amount: $250,000<br> Water system improvements. <br/></div>";
		  HTMLs_Temp[8] = "<div style='width:225px;'><b>Big Wells</b><br/>Project Type: HOME<br/>Grant Amount: $1,000,000<br> Two DR Contracts - 9 homes reconstructed under each contract. <br/></div>";
		  HTMLs_Temp[9] = "<div style='width:225px;'><b>Bishop</b><br/>Project Type: 2010 CD<br/>Grant Amount: $300,000<br> Water system improvements. <br/></div>";
		  HTMLs_Temp[10] = "<div style='width:225px;'><b>Bogata</b><br/>Project Type: DR<br/>Grant Amount: $350,000<br> Street and drainage improvements. <br/></div>";
		  HTMLs_Temp[11] = "<div style='width:225px;'><b>Caney City</b><br/>Project Type: 2009 CD<br/>Grant Amount: $250,000<br> Street improvements. <br/></div>";
		  HTMLs_Temp[12] = "<div style='width:225px;'><b>Canton</b><br/>Project Type: 2008 CD<br/>Grant Amount: $250,000<br> Water line improvements. <br/></div>";
		  HTMLs_Temp[13] = "<div style='width:225px;'><b>Carrizo Springs</b><br/>Project Type: HOME<br/>Grant Amount: $275,000<br> 20 homes under three contracts 2005, 2006, and 2010 plus and new application is in the works. <br/></div>";
		  HTMLs_Temp[14] = "<div style='width:225px;'><b>Cass County</b><br/>Project Type: DR<br/>Grant Amount: $350,000<br> Street and drainage improvements. <br/></div>";
		  HTMLs_Temp[15] = "<div style='width:225px;'><b>Cherokee County</b><br/>Project Type: STEP<br/>Grant Amount: $350,000<br> Water System improvements. <br/></div>";
		  HTMLs_Temp[16] = "<div style='width:225px;'><b>China</b><br/>Project Type: HOME<br/>Grant Amount: $500,000<br> 9 homes. <br/></div>";
		  HTMLs_Temp[17] = "<div style='width:225px;'><b>Clarksville</b><br/>Project Type: DR<br/>Grant Amount: $350,000<br> Street and drainage improvements. <br/></div>";
		  HTMLs_Temp[18] = "<div style='width:225px;'><b>Coffee City</b><br/>Project Type: CD<br/>Grant Amount: $250,000<br> Community center construction. <br/></div>";
		  HTMLs_Temp[19] = "<div style='width:225px;'><b>Colorado County</b><br/>Project Type: 2010 CD<br/>Grant Amount: $350,000<br> Water system improvements. <br/></div>";
		  HTMLs_Temp[20] = "<div style='width:225px;'><b>Columbus</b><br/>Project Type: 2010 CD<br/>Grant Amount: $275,000<br> Water system improvements. <br/></div>";
		  HTMLs_Temp[21] = "<div style='width:225px;'><b>Corrigan</b><br/>Project Type: HOME<br/>Grant Amount: $1,000,000<br> 1 city contract and 1 PHA contract 18 homes total.<br/></div>";
		  HTMLs_Temp[22] = "<div style='width:225px;'><b>Daingerfield</b><br/>Project Type: TCF<br/>Grant Amount: $150,000<br> Sidewalk, ADA ramps, handrail, street light improvements. <br/></div>";
		  HTMLs_Temp[23] = "<div style='width:225px;'><b>De Kalb</b><br/>Project Type: DR<br/>Grant Amount: $350,000<br> Street and drainage improvements. <br/></div>";
		  HTMLs_Temp[24] = "<div style='width:225px;'><b>Domino</b><br/>Project Type: CD<br/>Grant Amount: $250,000<br> Water system improvements. <br/></div>";
		  HTMLs_Temp[25] = "<div style='width:225px;'><b>Driscoll</b><br/>Project Type: CD<br/>Grant Amount: $300,000<br> Improvements to wastewater treatment plant. <br/></div>";
		  HTMLs_Temp[26] = "<div style='width:225px;'><b>Duval County</b><br/>Project Type: 2009 CD<br/>Grant Amount: $500,000<br> Water system improvements. <br/></div>";
		  HTMLs_Temp[27] = "<div style='width:225px;'><b>Eagle Lake</b><br/>Project Type: CD<br/>Grant Amount: $275,000<br> Improvements to wastewater treatment plant. <br/></div>";
		  HTMLs_Temp[28] = "<div style='width:225px;'><b>East Bernard</b><br/>Project Type: CD<br/>Grant Amount: $350,000<br> Water system improvements. <br/></div>";
		  HTMLs_Temp[29] = "<div style='width:225px;'><b>Edma</b><br/>Project Type: 2010 CD<br/>Grant Amount: $250,000<br> Improvements to wastewater treatment plant. <br/></div>";
		  HTMLs_Temp[30] = "<div style='width:225px;'><b>El Cenizo</b><br/>Project Type: CD<br/>Grant Amount: $531,041<br> Street and drainage improvements. <br/></div>";
		  HTMLs_Temp[31] = "<div style='width:225px;'><b>Emory</b><br/>Project Type: CD<br/>Grant Amount: $250,000<br> Sewer system improvements. <br/></div>";
		  HTMLs_Temp[32] = "<div style='width:225px;'><b>Freer</b><br/>Project Type: 2010 CD<br/>Grant Amount: $300,000<br> Water and sewer line improvements. <br/></div>";
		  HTMLs_Temp[33] = "<div style='width:225px;'><b>Galveston County</b><br/>Project Type: CD<br/>Grant Amount: $350,000<br> Installation of nine OSSF systems on High Island. <br/></div>";
		  HTMLs_Temp[34] = "<div style='width:225px;'><b>Ganado</b><br/>Project Type: 2010 CD<br/>Grant Amount: $250,000<br> Sewer line improvements. <br/></div>";
		  HTMLs_Temp[35] = "<div style='width:225px;'><b>Garrison</b><br/>Project Type: HOME<br/>Grant Amount: $700,000<br> 1999 - 5 homes, 2005 - 9 homes. <br/></div>";
		  HTMLs_Temp[36] = "<div style='width:225px;'><b>Gregory</b><br/>Project Type: CD<br/>Grant Amount: $300,000<br> Water system improvements. <br/></div>";
		  HTMLs_Temp[37] = "<div style='width:225px;'><b>Hearne</b><br/>Project Type: Planning<br/>Grant Amount: $50,000<br> Comprehensive Plan 2010-2030. <br/></div>";
		  HTMLs_Temp[38] = "<div style='width:225px;'><b>Huntington</b><br/>Project Type: HOME<br/>Grant Amount: $200,000<br> 1998 - 5 homes. <br/></div>";
		  HTMLs_Temp[39] = "<div style='width:225px;'><b>Ingleside</b><br/>Project Type: TCF<br/>Grant Amount: $750,000<br> TCF Application submitted for infrastructure improvements in support of Kiewit Offshore Services. <br/></div>";
		  HTMLs_Temp[40] = "<div style='width:225px;'><b>Ingleside</b><br/>Project Type: HOME<br/>Grant Amount: $1,000,000<br> 9 homes in 2005 and 5 being constructed under current contract. <br/></div>";
		  HTMLs_Temp[41] = "<div style='width:225px;'><b>Log Cabin</b><br/>Project Type: 2011 CD<br/>Grant Amount: $275,000<br> Water and sewer system improvements. <br/></div>";
		  HTMLs_Temp[42] = "<div style='width:225px;'><b>Lone Star</b><br/>Project Type: Planning<br/>Grant Amount: $44,300<br> Comprehensive Plan 2010-2030. <br/></div>";
		  HTMLs_Temp[43] = "<div style='width:225px;'><b>Maud</b><br/>Project Type: DR<br/>Grant Amount: $350,000<br> N/A <br/></div>";
		  HTMLs_Temp[44] = "<div style='width:225px;'><b>Muchison</b><br/>Project Type: CD<br/>Grant Amount: $250,000<br> Sewer system improvements. <br/></div>";
		  HTMLs_Temp[45] = "<div style='width:225px;'><b>Nacogdoches</b><br/>Project Type: 2007 CD<br/>Grant Amount: $250,000<br> Sewer system improvements. <br/></div>";
		  HTMLs_Temp[46] = "<div style='width:225px;'><b>Naples</b><br/>Project Type: DR<br/>Grant Amount: $350,000<br> Street and drainage improvements. <br/></div>";
		  HTMLs_Temp[47] = "<div style='width:225px;'><b>Nash</b><br/>Project Type: DR<br/>Grant Amount: $350,000<br> Street and drainage improvements. <br/></div>";
		  HTMLs_Temp[48] = "<div style='width:225px;'><b>New London</b><br/>Project Type: 2010 CD<br/>Grant Amount: $250,000<br> Sewer system improvements. <br/></div>";
		  HTMLs_Temp[49] = "<div style='width:225px;'><b>Nome</b><br/>Project Type: HOME<br/>Grant Amount: $180,000<br> 3 homes. <br/></div>";
		  HTMLs_Temp[50] = "<div style='width:225px;'><b>Odem</b><br/>Project Type: 2010 CD<br/>Grant Amount: $300,000<br> Water system improvements. <br/></div>";
		  HTMLs_Temp[51] = "<div style='width:225px;'><b>Orange Grove</b><br/>Project Type: 2010 CD<br/>Grant Amount: $300,000<br> Water system improvements. <br/></div>";
		  HTMLs_Temp[52] = "<div style='width:225px;'><b>Portland</b><br/>Project Type: TCF<br/>Grant Amount: $239,900<br> Water, sewer, drainage, road, gas, telephone and electric infrastructure improvements in support of the Texas A1 Steak & Seafood Restaurant. <br/></div>";
		  HTMLs_Temp[53] = "<div style='width:225px;'><b>Queen City</b><br/>Project Type: STEP<br/>Grant Amount: $350,000<br> Water system improvements. <br/></div>";
		  HTMLs_Temp[54] = "<div style='width:225px;'><b>Rains County</b><br/>Project Type: 2010 CD<br/>Grant Amount: $275,000<br> Water system improvements. <br/></div>";
		  HTMLs_Temp[55] = "<div style='width:225px;'><b>Reklaw</b><br/>Project Type: CD<br/>Grant Amount: $250,000<br> Water system improvements. <br/></div>";
		  HTMLs_Temp[56] = "<div style='width:225px;'><b>Rio Hondo</b><br/>Project Type: Planning<br/>Grant Amount: $44,300<br> Comprehensive Plan 2012-2032. <br/></div>";
		  HTMLs_Temp[57] = "<div style='width:225px;'><b>Rusk</b><br/>Project Type: Planning<br/>Grant Amount: $50,000<br> Comprehensive Plan 2006-2026. <br/></div>";
		  HTMLs_Temp[58] = "<div style='width:225px;'><b>San Diego</b><br/>Project Type: 2011 CD<br/>Grant Amount: $300,000<br> Water System improvements. <br/></div>";
		  HTMLs_Temp[59] = "<div style='width:225px;'><b>Scottsville</b><br/>Project Type: CD<br/>Grant Amount: $250,000<br> Water system improvements. <br/></div>";
		  HTMLs_Temp[60] = "<div style='width:225px;'><b>Shiner</b><br/>Project Type: CD<br/>Grant Amount: $250,000<br> Sewer system improvements. <br/></div>";
		  HTMLs_Temp[61] = "<div style='width:225px;'><b>Sinton</b><br/>Project Type: 2011 CD<br/>Grant Amount: $300,000<br> Sewer system improvements. <br/></div>";
		  HTMLs_Temp[62] = "<div style='width:225px;'><b>Taft</b><br/>Project Type: 2009 CD<br/>Grant Amount: $300,000<br> Water and sewer system improvements. <br/></div>";
		  HTMLs_Temp[63] = "<div style='width:225px;'><b>Timpson</b><br/>Project Type: PLANNING<br/>Grant Amount: $39,150<br> Comprehensive Plan 2011-2031. <br/></div>";
		  HTMLs_Temp[64] = "<div style='width:225px;'><b>Wallis</b><br/>Project Type: CD<br/>Grant Amount: $350,000<br> Water system improvements.<br/></div>";
		  HTMLs_Temp[65] = "<div style='width:225px;'><b>Wharton County</b><br/>Project Type: TCF<br/>Grant Amount: $750,000<br> Economic Development project to provide real estate activities for construction of a new agricultural machinery and equipment company facility in El Campo. <br/></div>";
		  HTMLs_Temp[66] = "<div style='width:225px;'><b>Willacy County</b><br/>Project Type: TCF<br/>Grant Amount: $750,000<br> TCF Application submitted for infrastructure improvements in support of La Jarra Assisted Living. <br/></div>";
		  HTMLs_Temp[67] = "<div style='width:225px;'><b>Woodsboro</b><br/>Project Type: 2007 CD<br/>Grant Amount: $500,000<br> Water and sewer improvements. <br/></div>";
		  HTMLs_Temp[68] = "<div style='width:225px;'><b>Woodsboro</b><br/>Project Type: HOME<br/>Grant Amount: $500,000<br> Contract is underway to construct 6 new homes. <br/></div>";
		  HTMLs_Temp[69] = "<div style='width:225px;'><b>Woodville</b><br/>Project Type: PLANNING<br/>Grant Amount: $29,400<br> Comprehensive Plan 2011-2030. <br/></div>";
		  
		  
		  return HTMLs_Temp;
		  }
//End HTMLs-----------------	







//Other Latitudes-----------------	 
	 function getMapData_OtherLats() {
		  var Lats_Temp=new Array();
		  
		  Lats_Temp[2] = 27.782307;
		  Lats_Temp[3] = 30.363489;
		  Lats_Temp[4] = 34.012653;
		  Lats_Temp[5] = 32.321686;
		  Lats_Temp[6] = 31.987866;
		  Lats_Temp[7] = 28.445949;
		  Lats_Temp[8] = 33.056031;
		  
		  Lats_Temp[9] = 29.878755;
		  
		  Lats_Temp[10] = 30.983907;
		  Lats_Temp[11] = 29.725169;
		  
		  Lats_Temp[12] = 29.750071;
		  
		  Lats_Temp[13] = 32.100311;
		  
		  Lats_Temp[14] = 28.379319;
		  
		  Lats_Temp[15] = 31.601793;
		  Lats_Temp[16] = 31.056938;
		  Lats_Temp[17] = 30.09801;
		  Lats_Temp[18] = 31.824072;
		  Lats_Temp[19] = 32.092369;
		  Lats_Temp[20] = 29.787875;
		  Lats_Temp[21] = 33.556933;
		  
		  Lats_Temp[22] = 33.445738;
		  Lats_Temp[23] = 33.080952;
		  Lats_Temp[24] = 31.131971;
		  Lats_Temp[25] = 31.885896;
		  Lats_Temp[26] = 31.811738;
		  Lats_Temp[27] = 31.713155;
		  Lats_Temp[28] = 30.788295;
		  Lats_Temp[29] = 33.052054;
		  Lats_Temp[30] = 32.297655;
		  Lats_Temp[31] = 31.590027;
		  Lats_Temp[32] = 32.2953;
		  Lats_Temp[33] = 31.326478;
		  Lats_Temp[34] = 32.800163;
		  Lats_Temp[35] = 34.077646;
		  Lats_Temp[36] = 31.391626;
		  Lats_Temp[37] = 31.4285;
		  Lats_Temp[38] = 30.722986;
		  Lats_Temp[39] = 32.127218;
		  Lats_Temp[40] = 33.984148;
		  Lats_Temp[41] = 31.447147;
		  Lats_Temp[42] = 32.111197;
		  Lats_Temp[43] = 31.935113;
		  Lats_Temp[44] = 33.386287;
		  Lats_Temp[45] = 28.379707;
		  Lats_Temp[46] = 31.869215;
		  Lats_Temp[47] = 32.160887;
		  Lats_Temp[48] = 33.159578;
		  Lats_Temp[49] = 32.538961;
		  Lats_Temp[50] = 30.840062;
		  Lats_Temp[51] = 32.110291;
		  Lats_Temp[52] = 30.892674;
		  Lats_Temp[53] = 32.360672;
		  Lats_Temp[54] = 28.329557;
		  Lats_Temp[55] = 31.983446;
		  Lats_Temp[56] = 31.452729;
		  Lats_Temp[57] = 33.469017;
		  Lats_Temp[58] = 33.101594;
		  Lats_Temp[59] = 29.583023;
		  Lats_Temp[60] = 33.150611;
		  Lats_Temp[61] = 34.530781;
		  Lats_Temp[62] = 32.604293;
		  Lats_Temp[63] = 33.814895;
		  Lats_Temp[64] = 32.429962;
		  Lats_Temp[65] = 32.306171;
		  Lats_Temp[66] = 31.848238;
		  Lats_Temp[67] = 31.456196;
		  Lats_Temp[68] = 27.828905;
		  Lats_Temp[69] = 30.077059;
		  Lats_Temp[70] = 31.303926;
		  Lats_Temp[71] = 32.185519;
		  Lats_Temp[72] = 30.715482;
		  Lats_Temp[73] = 32.370153;
		  Lats_Temp[74] = 30.478252;
		  Lats_Temp[75] = 33.063791;
		  Lats_Temp[76] = 32.393105;
		  Lats_Temp[77] = 29.944699;
		  Lats_Temp[78] = 30.061533;
		  Lats_Temp[79] = 30.040095;
		  Lats_Temp[80] = 30.486819;
		  Lats_Temp[81] = 33.264869;
		  Lats_Temp[82] = 33.138294;
		  Lats_Temp[83] = 34.068631;
		  Lats_Temp[84] = 31.066277;
		  Lats_Temp[85] = 31.19625;
		  Lats_Temp[86] = 33.467498;
		  Lats_Temp[87] = 33.920007;
		  Lats_Temp[88] = 31.216767;
		  Lats_Temp[89] = 32.99636;
		  Lats_Temp[90] = 33.176827;
		  Lats_Temp[91] = 30.310762;
		  Lats_Temp[92] = 29.571931;
		  Lats_Temp[93] = 31.5421;
		  Lats_Temp[94] = 30.71771;
		  Lats_Temp[95] = 31.209567;
		  Lats_Temp[96] = 35.232403;
		  Lats_Temp[97] = 31.552379;
		  Lats_Temp[98] = 29.355697;
		  Lats_Temp[99] = 30.918469;
		  Lats_Temp[100] = 30.868368;
		  Lats_Temp[101] = 32.059084;
		  Lats_Temp[102] = 31.86923;
		  Lats_Temp[103] = 31.599887;
		  Lats_Temp[104] = 31.5273;
		  Lats_Temp[105] = 32.306213;
		  Lats_Temp[106] = 33.113529;
		  Lats_Temp[107] = 33.724827;
		  Lats_Temp[108] = 31.555391;
		  Lats_Temp[109] = 33.729022;
		  Lats_Temp[110] = 32.965096;
		  Lats_Temp[111] = 31.418605;
		  Lats_Temp[112] = 33.365427;
		  Lats_Temp[113] = 28.888557;
		  Lats_Temp[114] = 30.781071;
		  Lats_Temp[115] = 29.037887;
		  Lats_Temp[116] = 29.999807;
		  Lats_Temp[117] = 33.189054;
		  Lats_Temp[118] = 32.468973;
		  Lats_Temp[119] = 32.520751;
		  Lats_Temp[120] = 33.644665;
		  Lats_Temp[121] = 31.323152;
		  Lats_Temp[122] = 28.307253;
		  Lats_Temp[123] = 32.240107;
		  Lats_Temp[124] = 32.097864;
		  Lats_Temp[125] = 33.89944;
		  Lats_Temp[126] = 31.895542;
		  Lats_Temp[127] = 28.885778;
		  Lats_Temp[128] = 31.8311;
		  Lats_Temp[129] = 27.958067;
		  Lats_Temp[130] = 33.365579;
		  Lats_Temp[131] = 33.595762;
		  Lats_Temp[132] = 33.47119;
		  Lats_Temp[133] = 32.130886;
		  Lats_Temp[134] = 31.838939;
		  Lats_Temp[135] = 34.067369;
		  Lats_Temp[136] = 33.145389;
		  Lats_Temp[137] = 30.224999;
		  Lats_Temp[138] = 31.404399;
		  Lats_Temp[139] = 32.488645;
		  Lats_Temp[140] = 34.393913;
		  Lats_Temp[141] = 32.210104;
		  Lats_Temp[142] = 31.368812;
		  Lats_Temp[143] = 32.524147;
		  Lats_Temp[144] = 31.043248;
		  Lats_Temp[145] = 33.424425;
		  Lats_Temp[146] = 31.509518;
		  Lats_Temp[147] = 30.226261;
		  Lats_Temp[148] = 33.323211;
		  Lats_Temp[149] = 32.897397;
		  Lats_Temp[150] = 33.599241;
		  Lats_Temp[151] = 34.080692;
		  Lats_Temp[152] = 32.59885;
		  Lats_Temp[153] = 33.319226;
		  Lats_Temp[154] = 31.754851;
		  Lats_Temp[155] = 33.370494;
		  
		  return Lats_Temp;
		  }
//End Latitudes------------------
	
//Other  Longs-----------------	
	  function getMapData_OtherLongs() {
		  var Longs_Temp=new Array();
		  
		  Longs_Temp[2] = -97.909807;
		  Longs_Temp[3] = -103.666095;
		  Longs_Temp[4] = -102.414163;
		  Longs_Temp[5] = -102.551663;
		  Longs_Temp[6] = -106.593243;
		  Longs_Temp[7] = -99.760391;
		  Longs_Temp[8] = -97.509556;
		  Longs_Temp[9] = -96.282806;
		  Longs_Temp[10] = -103.74307;
		  Longs_Temp[11] = -99.074207;
		  Longs_Temp[12] = -99.277954;
		  Longs_Temp[13] = -96.637633;
		  Longs_Temp[14] = -97.698669;
		  Longs_Temp[15] = -97.092011;
		  Longs_Temp[16] = -97.473635;
		  Longs_Temp[17] = -98.42196;
		  Longs_Temp[18] = -98.78974;
		  Longs_Temp[19] = -96.717446;
		  Longs_Temp[20] = -98.733436;
		  Longs_Temp[21] = -97.842926;
		  Longs_Temp[22] = -94.423326;
		  Longs_Temp[23] = -97.56284;
		  Longs_Temp[24] = -99.370456;
		  Longs_Temp[25] = -100.295382;
		  Longs_Temp[26] = -99.006936;
		  Longs_Temp[27] = -98.976568;
		  Longs_Temp[28] = -98.182464;
		  Longs_Temp[29] = -96.234362;
		  Longs_Temp[30] = -99.37349;
		  Longs_Temp[31] = -106.229095;
		  Longs_Temp[32] = -101.308625;
		  Longs_Temp[33] = -99.863985;
		  Longs_Temp[34] = -98.011537;
		  Longs_Temp[35] = -100.278744;
		  Longs_Temp[36] = -102.349891;
		  Longs_Temp[37] = -102.515533;
		  Longs_Temp[38] = -101.412165;
		  Longs_Temp[39] = -99.165857;
		  Longs_Temp[40] = -99.72404;
		  Longs_Temp[41] = -104.517402;
		  Longs_Temp[42] = -98.536295;
		  Longs_Temp[43] = -105.199745;
		  Longs_Temp[44] = -95.672238;
		  Longs_Temp[45] = -99.692481;
		  Longs_Temp[46] = -102.542785;
		  Longs_Temp[47] = -96.577176;
		  Longs_Temp[48] = -96.358024;
		  Longs_Temp[49] = -96.6691;
		  Longs_Temp[50] = -97.792952;
		  Longs_Temp[51] = -101.366675;
		  Longs_Temp[52] = -102.885446;
		  Longs_Temp[53] = -96.65266;
		  Longs_Temp[54] = -98.11791;
		  Longs_Temp[55] = -102.616214;
		  Longs_Temp[56] = -98.569929;
		  Longs_Temp[57] = -99.523057;
		  Longs_Temp[58] = -98.578426;
		  Longs_Temp[59] = -97.948606;
		  Longs_Temp[60] = -96.918227;
		  Longs_Temp[61] = -100.681124;
		  Longs_Temp[62] = -99.81167;
		  Longs_Temp[63] = -98.193592;
		  Longs_Temp[64] = -97.832316;
		  Longs_Temp[65] = -101.435506;
		  Longs_Temp[66] = -96.799625;
		  Longs_Temp[67] = -105.386466;
		  Longs_Temp[68] = -97.220721;
		  Longs_Temp[69] = -99.238327;
		  Longs_Temp[70] = -100.982422;
		  Longs_Temp[71] = -96.886431;
		  Longs_Temp[72] = -104.140022;
		  Longs_Temp[73] = -97.402132;
		  Longs_Temp[74] = -97.930695;
		  Longs_Temp[75] = -96.316131;
		  Longs_Temp[76] = -97.330072;
		  Longs_Temp[77] = -98.711561;
		  Longs_Temp[78] = -99.350101;
		  Longs_Temp[79] = -99.136282;
		  Longs_Temp[80] = -99.748742;
		  Longs_Temp[81] = -97.22641;
		  Longs_Temp[82] = -96.975131;
		  Longs_Temp[83] = -102.35171;
		  Longs_Temp[84] = -98.183279;
		  Longs_Temp[85] = -98.241333;
		  Longs_Temp[86] = -94.216213;
		  Longs_Temp[87] = -102.334972;
		  Longs_Temp[88] = -98.392413;
		  Longs_Temp[89] = -95.943214;
		  Longs_Temp[90] = -101.816125;
		  Longs_Temp[91] = -104.025423;
		  Longs_Temp[92] = -98.142196;
		  Longs_Temp[93] = -96.830172;
		  Longs_Temp[94] = -99.226046;
		  Longs_Temp[95] = -99.32071;
		  Longs_Temp[96] = -100.600093;
		  Longs_Temp[97] = -97.201792;
		  Longs_Temp[98] = -99.110132;
		  Longs_Temp[99] = -99.783334;
		  Longs_Temp[100] = -99.852758;
		  Longs_Temp[101] = -96.895226;
		  Longs_Temp[102] = -102.031568;
		  Longs_Temp[103] = -100.18458;
		  Longs_Temp[104] = -98.527678;
		  Longs_Temp[105] = -100.921228;
		  Longs_Temp[106] = -94.732646;
		  Longs_Temp[107] = -102.758901;
		  Longs_Temp[108] = -98.666889;
		  Longs_Temp[109] = -101.839705;
		  Longs_Temp[110] = -101.830713;
		  Longs_Temp[111] = -97.511294;
		  Longs_Temp[112] = -98.758232;
		  Longs_Temp[113] = -99.092737;
		  Longs_Temp[114] = -102.723589;
		  Longs_Temp[115] = -98.574049;
		  Longs_Temp[116] = -104.240561;
		  Longs_Temp[117] = -96.510382;
		  Longs_Temp[118] = -98.675909;
		  Longs_Temp[119] = -96.809038;
		  Longs_Temp[120] = -94.959908;
		  Longs_Temp[121] = -103.69313;
		  Longs_Temp[122] = -97.274872;
		  Longs_Temp[123] = -96.498668;
		  Longs_Temp[124] = -98.966441;
		  Longs_Temp[125] = -100.857481;
		  Longs_Temp[126] = -100.485976;
		  Longs_Temp[127] = -97.713325;
		  Longs_Temp[128] = -99.976237;
		  Longs_Temp[129] = -97.771778;
		  Longs_Temp[130] = -97.174142;
		  Longs_Temp[131] = -99.259252;
		  Longs_Temp[132] = -100.85611;
		  Longs_Temp[133] = -101.793358;
		  Longs_Temp[134] = -100.986372;
		  Longs_Temp[135] = -102.525336;
		  Longs_Temp[136] = -95.609843;
		  Longs_Temp[137] = -102.076496;
		  Longs_Temp[138] = -100.462081;
		  Longs_Temp[139] = -100.123203;
		  Longs_Temp[140] = -100.896162;
		  Longs_Temp[141] = -99.799181;
		  Longs_Temp[142] = -102.043051;
		  Longs_Temp[143] = -95.636917;
		  Longs_Temp[144] = -104.828275;
		  Longs_Temp[145] = -94.113547;
		  Longs_Temp[146] = -103.102418;
		  Longs_Temp[147] = -97.499514;
		  Longs_Temp[148] = -99.672738;
		  Longs_Temp[149] = -96.023307;
		  Longs_Temp[150] = -102.612617;
		  Longs_Temp[151] = -99.240945;
		  Longs_Temp[152] = -96.683386;
		  Longs_Temp[153] = -101.727464;
		  Longs_Temp[154] = -103.154603;
		  Longs_Temp[155] = -96.068844;
		  
		  return Longs_Temp;
		  }
//End Longs-----------------	  
	  
//Other  HTMLs-----------------	
	  function getMapData_OtherHTMLs() {
		  var HTMLs_Temp=new Array();
		  
		  HTMLs_Temp[2] = "<div style='width:225px;'><b>Agua Dulce</b><br/></div>";
		  HTMLs_Temp[3] = "<div style='width:225px;'><b>Alpine</b><br/></div>";
		  HTMLs_Temp[4] = "<div style='width:225px;'><b>Amherst</b><br/></div>";
		  HTMLs_Temp[5] = "<div style='width:225px;'><b>Andrews</b><br/></div>";
		  HTMLs_Temp[6] = "<div style='width:225px;'><b>Anthony</b><br/></div>";
		  HTMLs_Temp[7] = "<div style='width:225px;'><b>Asherton</b><br/></div>";
		  HTMLs_Temp[8] = "<div style='width:225px;'><b>Aurora</b><br/></div>";
		  HTMLs_Temp[9] = "<div style='width:225px;'><b>Austin County</b><br/></div>";
		  HTMLs_Temp[10] = "<div style='width:225px;'><b>Balmorhea</b><br/></div>";
		  HTMLs_Temp[11] = "<div style='width:225px;'><b>Bandera</b><br/></div>";
		  HTMLs_Temp[12] = "<div style='width:225px;'><b>Bandera County</b><br/></div>";
		  HTMLs_Temp[13] = "<div style='width:225px;'><b>Barry</b><br/></div>";
		  HTMLs_Temp[14] = "<div style='width:225px;'><b>Bee County</b><br/></div>";
		  HTMLs_Temp[15] = "<div style='width:225px;'><b>Bellmead</b><br/></div>";
		  HTMLs_Temp[16] = "<div style='width:225px;'><b>Belton</b><br/></div>";
		  HTMLs_Temp[17] = "<div style='width:225px;'><b>Blanco</b><br/></div>";
		  HTMLs_Temp[18] = "<div style='width:225px;'><b>Blanket</b><br/></div>";
		  HTMLs_Temp[19] = "<div style='width:225px;'><b>Blooming Grove</b><br/></div>";
		  HTMLs_Temp[20] = "<div style='width:225px;'><b>Boerne</b><br/></div>";
		  HTMLs_Temp[21] = "<div style='width:225px;'><b>Bowie</b><br/></div>";
		  HTMLs_Temp[22] = "<div style='width:225px;'><b>Bowie County</b><br/></div>";
		  HTMLs_Temp[23] = "<div style='width:225px;'><b>Boyd</b><br/></div>";
		  HTMLs_Temp[24] = "<div style='width:225px;'><b>Brady</b><br/></div>";
		  HTMLs_Temp[25] = "<div style='width:225px;'><b>Bronte</b><br/></div>";
		  HTMLs_Temp[26] = "<div style='width:225px;'><b>Brown County</b><br/></div>";
		  HTMLs_Temp[27] = "<div style='width:225px;'><b>Brownwood</b><br/></div>";
		  HTMLs_Temp[28] = "<div style='width:225px;'><b>Burnet County</b><br/></div>";
		  HTMLs_Temp[29] = "<div style='width:225px;'><b>Caddo Mills</b><br/></div>";
		  HTMLs_Temp[30] = "<div style='width:225px;'><b>Callahan County</b><br/></div>";
		  HTMLs_Temp[31] = "<div style='width:225px;'><b>Clint</b><br/></div>";
		  HTMLs_Temp[32] = "<div style='width:225px;'><b>Coahoma</b><br/></div>";
		  HTMLs_Temp[33] = "<div style='width:225px;'><b>Concho County</b><br/></div>";
		  HTMLs_Temp[34] = "<div style='width:225px;'><b>Cool</b><br/></div>";
		  HTMLs_Temp[35] = "<div style='width:225px;'><b>Cottle County</b><br/></div>";
		  HTMLs_Temp[36] = "<div style='width:225px;'><b>Crane</b><br/></div>";
		  HTMLs_Temp[37] = "<div style='width:225px;'><b>Crane County</b><br/></div>";
		  HTMLs_Temp[38] = "<div style='width:225px;'><b>Crockett County</b><br/></div>";
		  HTMLs_Temp[39] = "<div style='width:225px;'><b>Cross Plains</b><br/></div>";
		  HTMLs_Temp[40] = "<div style='width:225px;'><b>Crowell</b><br/></div>";
		  HTMLs_Temp[41] = "<div style='width:225px;'><b>Culberson County</b><br/></div>";
		  HTMLs_Temp[42] = "<div style='width:225px;'><b>De Leon</b><br/></div>";
		  HTMLs_Temp[43] = "<div style='width:225px;'><b>Dell City</b><br/></div>";
		  HTMLs_Temp[44] = "<div style='width:225px;'><b>Delta County</b><br/></div>";
		  HTMLs_Temp[45] = "<div style='width:225px;'><b>Dimmit County</b><br/></div>";
		  HTMLs_Temp[46] = "<div style='width:225px;'><b>Ector County</b><br/></div>";
		  HTMLs_Temp[47] = "<div style='width:225px;'><b>Emhouse</b><br/></div>";
		  HTMLs_Temp[48] = "<div style='width:225px;'><b>Farmersville</b><br/></div>";
		  HTMLs_Temp[49] = "<div style='width:225px;'><b>Ferris</b><br/></div>";
		  HTMLs_Temp[50] = "<div style='width:225px;'><b>Florence</b><br/></div>";
		  HTMLs_Temp[51] = "<div style='width:225px;'><b>Forsan</b><br/></div>";
		  HTMLs_Temp[52] = "<div style='width:225px;'><b>Fort Stockton</b><br/></div>";
		  HTMLs_Temp[53] = "<div style='width:225px;'><b>Garrett</b><br/></div>";
		  HTMLs_Temp[54] = "<div style='width:225px;'><b>George West</b><br/></div>";
		  HTMLs_Temp[55] = "<div style='width:225px;'><b>Goldsmith</b><br/></div>";
		  HTMLs_Temp[56] = "<div style='width:225px;'><b>Goldthwaite</b><br/></div>";
		  HTMLs_Temp[57] = "<div style='width:225px;'><b>Goree</b><br/></div>";
		  HTMLs_Temp[58] = "<div style='width:225px;'><b>Graham</b><br/></div>";
		  HTMLs_Temp[59] = "<div style='width:225px;'><b>Guadalupe County</b><br/></div>";
		  HTMLs_Temp[60] = "<div style='width:225px;'><b>Hackberry</b><br/></div>";
		  HTMLs_Temp[61] = "<div style='width:225px;'><b>Hall County</b><br/></div>";
		  HTMLs_Temp[62] = "<div style='width:225px;'><b>Hawley</b><br/></div>";
		  HTMLs_Temp[63] = "<div style='width:225px;'><b>Henrietta</b><br/></div>";
		  HTMLs_Temp[64] = "<div style='width:225px;'><b>Hood County</b><br/></div>";
		  HTMLs_Temp[65] = "<div style='width:225px;'><b>Howard County</b><br/></div>";
		  HTMLs_Temp[66] = "<div style='width:225px;'><b>Hubbard</b><br/></div>";
		  HTMLs_Temp[67] = "<div style='width:225px;'><b>Hudspeth County</b><br/></div>";
		  HTMLs_Temp[68] = "<div style='width:225px;'><b>Ingleside-on-the-Bay</b><br/></div>";
		  HTMLs_Temp[69] = "<div style='width:225px;'><b>Ingram</b><br/></div>";
		  HTMLs_Temp[70] = "<div style='width:225px;'><b>Irion County</b><br/></div>";
		  HTMLs_Temp[71] = "<div style='width:225px;'><b>Italy</b><br/></div>";
		  HTMLs_Temp[72] = "<div style='width:225px;'><b>Jeff Davis County</b><br/></div>";
		  HTMLs_Temp[73] = "<div style='width:225px;'><b>Johnson County</b><br/></div>";
		  HTMLs_Temp[74] = "<div style='width:225px;'><b>Jonestown</b><br/></div>";
		  HTMLs_Temp[75] = "<div style='width:225px;'><b>Josephine</b><br/></div>";
		  HTMLs_Temp[76] = "<div style='width:225px;'><b>Keene</b><br/></div>";
		  HTMLs_Temp[77] = "<div style='width:225px;'><b>Kendall County</b><br/></div>";
		  HTMLs_Temp[78] = "<div style='width:225px;'><b>Kerr County</b><br/></div>";
		  HTMLs_Temp[79] = "<div style='width:225px;'><b>Kerrville</b><br/></div>";
		  HTMLs_Temp[80] = "<div style='width:225px;'><b>Kimble County</b><br/></div>";
		  HTMLs_Temp[81] = "<div style='width:225px;'><b>Krum</b><br/></div>";
		  HTMLs_Temp[82] = "<div style='width:225px;'><b>Lakewood Village</b><br/></div>";
		  HTMLs_Temp[83] = "<div style='width:225px;'><b>Lamb County</b><br/></div>";
		  HTMLs_Temp[84] = "<div style='width:225px;'><b>Lampasas</b><br/></div>";
		  HTMLs_Temp[85] = "<div style='width:225px;'><b>Lampasas County</b><br/></div>";
		  HTMLs_Temp[86] = "<div style='width:225px;'><b>Leary</b><br/></div>";
		  HTMLs_Temp[87] = "<div style='width:225px;'><b>Littlefield</b><br/></div>";
		  HTMLs_Temp[88] = "<div style='width:225px;'><b>Lometa</b><br/></div>";
		  HTMLs_Temp[89] = "<div style='width:225px;'><b>Lone Oak</b><br/></div>";
		  HTMLs_Temp[90] = "<div style='width:225px;'><b>Lynn County</b><br/></div>";
		  HTMLs_Temp[91] = "<div style='width:225px;'><b>Marfa</b><br/></div>";
		  HTMLs_Temp[92] = "<div style='width:225px;'><b>Marion</b><br/></div>";
		  HTMLs_Temp[93] = "<div style='width:225px;'><b>Mart</b><br/></div>";
		  HTMLs_Temp[94] = "<div style='width:225px;'><b>Mason County</b><br/></div>";
		  HTMLs_Temp[95] = "<div style='width:225px;'><b>McCulloch County</b><br/></div>";
		  HTMLs_Temp[96] = "<div style='width:225px;'><b>McLean</b><br/></div>";
		  HTMLs_Temp[97] = "<div style='width:225px;'><b>McLennan County</b><br/></div>";
		  HTMLs_Temp[98] = "<div style='width:225px;'><b>Medina County</b><br/></div>";
		  HTMLs_Temp[99] = "<div style='width:225px;'><b>Menard</b><br/></div>";
		  HTMLs_Temp[100] = "<div style='width:225px;'><b>Menard County</b><br/></div>";
		  HTMLs_Temp[101] = "<div style='width:225px;'><b>Mertens</b><br/></div>";
		  HTMLs_Temp[102] = "<div style='width:225px;'><b>Midland County</b><br/></div>";
		  HTMLs_Temp[103] = "<div style='width:225px;'><b>Miles</b><br/></div>";
		  HTMLs_Temp[104] = "<div style='width:225px;'><b>Mills County</b><br/></div>";
		  HTMLs_Temp[105] = "<div style='width:225px;'><b>Mitchell County/b><br/></div>";
		  HTMLs_Temp[106] = "<div style='width:225px;'><b>Morris County</b><br/></div>";
		  HTMLs_Temp[107] = "<div style='width:225px;'><b>Morton</b><br/></div>";
		  HTMLs_Temp[108] = "<div style='width:225px;'><b>Mullin</b><br/></div>";
		  HTMLs_Temp[109] = "<div style='width:225px;'><b>New Deal</b><br/></div>";
		  HTMLs_Temp[110] = "<div style='width:225px;'><b>O'Donnell</b><br/></div>";
		  HTMLs_Temp[111] = "<div style='width:225px;'><b>Oglesby</b><br/></div>";
		  HTMLs_Temp[112] = "<div style='width:225px;'><b>Olney</b><br/></div>";
		  HTMLs_Temp[113] = "<div style='width:225px;'><b>Pearsall</b><br/></div>";
		  HTMLs_Temp[114] = "<div style='width:225px;'><b>Pecos County</b><br/></div>";
		  HTMLs_Temp[115] = "<div style='width:225px;'><b>Poteet</b><br/></div>";
		  HTMLs_Temp[116] = "<div style='width:225px;'><b>Presidio County</b><br/></div>";
		  HTMLs_Temp[117] = "<div style='width:225px;'><b>Princeton</b><br/></div>";
		  HTMLs_Temp[118] = "<div style='width:225px;'><b>Ranger</b><br/></div>";
		  HTMLs_Temp[119] = "<div style='width:225px;'><b>Red Oak</b><br/></div>";
		  HTMLs_Temp[120] = "<div style='width:225px;'><b>Red River County</b><br/></div>";
		  HTMLs_Temp[121] = "<div style='width:225px;'><b>Reeves County</b><br/></div>";
		  HTMLs_Temp[122] = "<div style='width:225px;'><b>Refugio</b><br/></div>";
		  HTMLs_Temp[123] = "<div style='width:225px;'><b>Rice</b><br/></div>";
		  HTMLs_Temp[124] = "<div style='width:225px;'><b>Rising Star</b><br/></div>";
		  HTMLs_Temp[125] = "<div style='width:225px;'><b>Roaring Springs</b><br/></div>";
		  HTMLs_Temp[126] = "<div style='width:225px;'><b>Robert Lee</b><br/></div>";
		  HTMLs_Temp[127] = "<div style='width:225px;'><b>Runge</b><br/></div>";
		  HTMLs_Temp[128] = "<div style='width:225px;'><b>Runnels County</b><br/></div>";
		  HTMLs_Temp[129] = "<div style='width:225px;'><b>San Patricio</b><br/></div>";
		  HTMLs_Temp[130] = "<div style='width:225px;'><b>Sanger</b><br/></div>";
		  HTMLs_Temp[131] = "<div style='width:225px;'><b>Seymour</b><br/></div>";
		  HTMLs_Temp[132] = "<div style='width:225px;'><b>Spur</b><br/></div>";
		  HTMLs_Temp[133] = "<div style='width:225px;'><b>Stanton</b><br/></div>";
		  HTMLs_Temp[134] = "<div style='width:225px;'><b>Sterling City</b><br/></div>";
		  HTMLs_Temp[135] = "<div style='width:225px;'><b>Sudan</b><br/></div>";
		  HTMLs_Temp[136] = "<div style='width:225px;'><b>Sulphur Springs</b><br/></div>";
		  HTMLs_Temp[137] = "<div style='width:225px;'><b>Terrell County</b><br/></div>";
		  HTMLs_Temp[138] = "<div style='width:225px;'><b>Tom Green County</b><br/></div>";
		  HTMLs_Temp[139] = "<div style='width:225px;'><b>Trent</b><br/></div>";
		  HTMLs_Temp[140] = "<div style='width:225px;'><b>Turkey</b><br/></div>";
		  HTMLs_Temp[141] = "<div style='width:225px;'><b>Tuscola</b><br/></div>";
		  HTMLs_Temp[142] = "<div style='width:225px;'><b>Upton County</b><br/></div>";
		  HTMLs_Temp[143] = "<div style='width:225px;'><b>Van</b><br/></div>";
		  HTMLs_Temp[144] = "<div style='width:225px;'><b>Van Horn</b><br/></div>";
		  HTMLs_Temp[145] = "<div style='width:225px;'><b>Wake Village</b><br/></div>";
		  HTMLs_Temp[146] = "<div style='width:225px;'><b>Ward County</b><br/></div>";
		  HTMLs_Temp[147] = "<div style='width:225px;'><b>Webberville</b><br/></div>";
		  HTMLs_Temp[148] = "<div style='width:225px;'><b>Weinert</b><br/></div>";
		  HTMLs_Temp[149] = "<div style='width:225px;'><b>West Tawakoni</b><br/></div>";
		  HTMLs_Temp[150] = "<div style='width:225px;'><b>Whiteface</b><br/></div>";
		  HTMLs_Temp[151] = "<div style='width:225px;'><b>Wilbarger County</b><br/></div>";
		  HTMLs_Temp[152] = "<div style='width:225px;'><b>Wilmer</b><br/></div>";
		  HTMLs_Temp[153] = "<div style='width:225px;'><b>Wilson</b><br/></div>";
		  HTMLs_Temp[154] = "<div style='width:225px;'><b>Wink</b><br/></div>";
		  HTMLs_Temp[155] = "<div style='width:225px;'><b>Wolfe City</b><br/></div>";
		  
		  
		  
		  return HTMLs_Temp;
		  }
//End HTMLs-----------------
	  
	  
	  
//end get map data functions
	  
    }

