// Author: Frank Young
// Information Services Department
// County of Humboldt
// January 10, 2002

districts = new Array ('all','d1', 'd2', 'd3', 'd4', 'd5');
map = new Array(6);
statusMsg = new Array(6);
desc = new Array(6);

for (i=0; i<=5; i++) {
  map[i] = new Image(); 
}
map[0].src="map/images/ssdist.gif";
map[1].src="map/images/sd1.gif";
map[2].src="map/images/sd2.gif";
map[3].src="map/images/sd3.gif";
map[4].src="map/images/sd4.gif";
map[5].src="map/images/sd5.gif";

for (i=0; i<=5; i++) {
  desc[i] = new Image();
}
desc[0].src = "map/images/blank.gif";
desc[1].src = "map/images/dist1towns.gif";
desc[2].src = "map/images/dist2towns.gif";
desc[3].src = "map/images/dist3towns.gif";
desc[4].src = "map/images/dist4towns.gif";
desc[5].src = "map/images/dist5towns.gif";

statusMsg[0] = "";
statusMsg[1] = "District 1: Loleta , Ferndale, Petrolia, Hookton, Honeydew -- Supervisor: Jimmy Smith";
statusMsg[2] = "District 2: Alderpoint, Benbow, Fortuna, Garberville, Meyers Flat, Redway, Rio Dell, Shelter Cove, Stafford -- Supervisor: Roger Rodoni";
statusMsg[3] = "District 3: Arcata, Freshwater, Kneeland, Manila -- Supervisor: John Wooley";
statusMsg[4] = "District 4: Eureka, Fairhaven, Samoa -- Supervisor: Bonnie Neely";
statusMsg[5] = "District 5: Blue Lake, McKinleyville, Orleans, Orick, Trinidad, Weitchipec, Willow Creek -- Supervisor:Paul Kirk";

function higlightSection(sectionNum) {
  document["all"].src = map[sectionNum*1].src;
  window.status = statusMsg[sectionNum*1];
  document["txtDescription"].src=desc[sectionNum*1].src;
}

function showMap(){
  var mapwin = window.open("","supDistMapWin",'toolbars=0,scrollbars=1,resizable=1,width=790');
  mapwin.document.write("<title>Humboldt County Supervisorial Districts</title><a href='#' onClick='window.close();'><font face=arial size=2 color=maroon><b>Close this Window</b></a> | <a href='#' onClick='window.print();'><font face=arial size=2 color=maroon><b>Print Map</b></a>");
  mapwin.document.write("<p><img alt='Map of Humboldt County Supervisorial Districts' src=map/images/supdist.gif>");
  mapwin.document.close();
}

function credits(){
  var creditswin = window.open("","creditsWin",'toolbars=0,scrollbars=0,resizable=1,width=600,height=150');
  creditswin.document.write("<html><body bgcolor=999999 color=FFFFFF marginheight=0 topmargin=0 leftmargin=0>");
  creditswin.document.write("<br><table cellspacing=0 cellpadding=4 width=100%><tr><td height=2 bgcolor=336699></td><tr><td bgcolor=E4E4E4><font face=arial size=2 color=333333>");
  creditswin.document.write("<b>Humboldt County Supervisorial Districts </b><p>Map compiled May 2001<br>Humboldt County Community Development Services Department<br>");
  creditswin.document.write("New Supervisorial District lines added Nov. 2001 <br>");
  creditswin.document.write("Chinmaya Lewis, Planning Technician</font>");
  creditswin.document.write("</td></tr><tr><td bgcolor=336699 height=2></td></tr></table></body></html>");
  creditswin.document.close();
}