var map;

function load_map( inMapDivID, inSelectedArea, inSelectedYear )
{
	generate_legend( inMapDivID, inSelectedArea, inSelectedYear );

	// Create a new <div> element for the Google Map.
	var container_obj = document.getElementById( inMapDivID );
	var	new_div = document.createElement( 'div' );

	new_div.setAttribute( 'id', 'google_map' );
	// I.E. Compatibility: Access the style in this fashion; don't use setAttribute with styles.
	new_div.style.width = '100%';
	new_div.style.height = '80%';
	container_obj.appendChild( new_div );

	if ( GBrowserIsCompatible( ) )
	{
		var area_bounds;

		map = new GMap2( new_div );
		map.addControl(new GLargeMapControl());
		map.addControl(new GMapTypeControl());
		map.addControl(new GScaleControl());

		area_bounds = create_GLatLngBounds_for_area( inSelectedArea );
		map.setCenter( area_bounds.getCenter( ),
					map.getBoundsZoomLevel( area_bounds ) );

		// Monitor the window resize event and let the map know when it occurs
		if (window.attachEvent)
		{
			window.attachEvent("onresize", function() {this.map.onResize()} );
		}
		else
		{
			window.addEventListener("resize", function() {this.map.onResize()} , false);
		}

		// As soon as the window loads, set up our markers.
		window.setTimeout( function( ) { set_map_area( inMapDivID ); }, 0 );
	}
}

var site_area_arr = new Array(
		new Array( "MB", "Manitoba", 48.95, -102.1, 51, -95.16 ),
		new Array( "ON", "Ontario", 41.67, -95.16, 51, -74.31 ),
		new Array( "AL", "Alabama", 30.2, -88.4, 35, -84.8 ),
		new Array( "AR", "Arkansas", 33, -94.62, 36.51, -89.64 ),
		new Array( "FL", "Florida", 24.5, -87.7, 31, -80 ),
		new Array( "IL", "Illinois", 36.99, -91.6, 42.51, -87.5 ),
		new Array( "IN", "Indiana", 37.77, -88.1, 41.76, -84.8 ),
		new Array( "IA", "Iowa", 40.57, -96.7, 43.5, -90.1 ),
		new Array( "KS", "Kansas", 36.99, -102.05, 40, -94.6 ),
		new Array( "KY", "Kentucky", 36.48, -89.57, 39.15, -81.94 ),
		new Array( "MI", "Michigan", 41.7, -90.47, 47.5, -82.35 ),
		new Array( "MN", "Minnesota", 43.5, -96.45, 49.2, -89.2 ),
		new Array( "MO", "Missouri", 36.43, -95.78, 40.6, -89.05 ),
		new Array( "NE", "Nebraska", 40, -104.1, 43.05, -95.3 ),
		new Array( "ND", "North Dakota", 45.94, -104.05, 49, -96.6 ),
		new Array( "OH", "Ohio", 38.3, -84.9, 41.98, -80.52 ),
		new Array( "OK", "Oklahoma", 33.7, -103.1, 37, -94.4 ),
		new Array( "SD", "South Dakota", 42.47, -104.06, 45.94, -96.44 ),
		new Array( "WI", "Wisconsin", 42.51, -92.7, 47.1, -86.7 )
	);

function create_GLatLngBounds_for_area( inArea )
{
	var area_index;

	for ( area_index = 0; area_index < site_area_arr.length; area_index++ )
	{
		if ( inArea == site_area_arr[ area_index ][0] )
		{
			return ( new GLatLngBounds(
						new GLatLng( site_area_arr[ area_index ][2], site_area_arr[ area_index ][3] ), // SW corner
						new GLatLng( site_area_arr[ area_index ][4], site_area_arr[ area_index ][5] ) // NE corner
						)
					);
		}
	}

	return ( new GLatLngBounds(
				new GLatLng( 24.5, -104.1 ), // SW corner
				new GLatLng( 51, -74.31 ) // NE corner
				)
			);
}

var year_arr = new Array(
		"2020",
		"2011",
		"2010",
		"2009",
		"2008",
		"2007",
		"2006",
		"2005",
		"2004",
		"2003",
		"2002",
		"2001",
		"2000",
		"1999",
		"1998",
		"1997",
		"1996",
		"1995",
		"1994",
		"1993",
		"1992",
		"1991",
		"1990",
		"1989",
		"1988",
		"1987",
		"1986",
		"1985",
		"1984",
		"1983",
		"1982"
	);

function generate_legend( inDivID, inSelectedArea, inSelectedYear )
{
	var container_obj = document.getElementById( inDivID );
	var new_form = document.createElement( 'form' );
	var	new_para = document.createElement( 'p' );
	var new_image;
	var new_select;
	var index;
	var selected_index;

	new_para.appendChild( document.createTextNode( 'Show:' ) );

	new_select = document.createElement( 'select' );
	new_select.setAttribute( 'id', 'map_area' );
	new_select.setAttribute( 'name', 'map_area' );
	// I.E. Compatibility: Set the onchange property directly; don't use setAttribute.
	new_select.onchange = new Function("set_map_area( 'map' );");
	selected_index = 0;
	new_select.options[0] = new Option( 'All states/provinces', 'all', false, false );
	for ( index = 0; index < site_area_arr.length; index++ )
	{
		new_select.options[new_select.options.length] = new Option( site_area_arr[ index ][ 1 ], site_area_arr[ index ][ 0 ], false, false );
		if ( site_area_arr[ index ][ 0 ] == inSelectedArea )
			selected_index = index + 1;
	}
	new_select.selectedIndex = selected_index;
	new_para.appendChild( new_select );

	new_para.appendChild( document.createTextNode(' Year:') );

	new_select = document.createElement( 'select' );
	new_select.setAttribute( 'id', 'map_year' );
	new_select.setAttribute( 'name', 'map_year' );
	// I.E. Compatibility: Set the onchange property directly; don't use setAttribute.
	new_select.onchange = new Function("set_map_year( 'map' );");
	selected_index = 0;
	new_select.options[0] = new Option( 'All years', 'all', false, false );
inSelectedYear
	for ( index = 0; index < year_arr.length; index++ )
	{
		new_select.options[new_select.options.length] = new Option( year_arr[ index ], year_arr[ index ], false, false );
		if ( year_arr[ index ] == inSelectedYear )
			selected_index = index + 1;
	}
	new_select.selectedIndex = selected_index;
	new_para.appendChild( new_select );

	new_para.appendChild( document.createTextNode(' -- ') );

	new_image = document.createElement( 'img' );
	new_image.setAttribute( 'src', 'http://midwestperegrine.org/db/images/Bridge.png' );
	new_image.setAttribute( 'alt', 'Bridge marker' );
	new_image.setAttribute( 'height', '17' );
	new_image.setAttribute( 'width', '10' );
	new_para.appendChild( new_image );

	new_para.appendChild( document.createTextNode(' Bridge -- ') );

	new_image = document.createElement( 'img' );
	new_image.setAttribute( 'src', 'http://www.google.com/mapfiles/marker.png' );
	new_image.setAttribute( 'alt', 'Building marker' );
	new_image.setAttribute( 'height', '17' );
	new_image.setAttribute( 'width', '10' );
	new_para.appendChild( new_image );

	new_para.appendChild( document.createTextNode(' Building -- ') );

	new_image = document.createElement( 'img' );
	new_image.setAttribute( 'src', 'http://midwestperegrine.org/db/images/Cliff.png' );
	new_image.setAttribute( 'alt', 'Cliff marker' );
	new_image.setAttribute( 'height', '17' );
	new_image.setAttribute( 'width', '10' );
	new_para.appendChild( new_image );

	new_para.appendChild( document.createTextNode(' Cliff -- ') );

	new_image = document.createElement( 'img' );
	new_image.setAttribute( 'src', 'http://midwestperegrine.org/db/images/Smokestack.png' );
	new_image.setAttribute( 'alt', 'Smokestack marker' );
	new_image.setAttribute( 'height', '17' );
	new_image.setAttribute( 'width', '10' );
	new_para.appendChild( new_image );

	new_para.appendChild( document.createTextNode(' Smokestack') );

	new_para.appendChild( document.createElement('br') );

	new_para.appendChild( document.createTextNode('Drag the map with your mouse, or click a site marker on the map for additional info.') );

	new_form.appendChild( new_para );
	container_obj.appendChild( new_form );
}

function createMarker(point_obj, html_text, icon_obj )
{
  var marker = new GMarker(point_obj, { icon: icon_obj } );

  GEvent.addListener(marker, "click", function() {
    marker.openInfoWindowHtml(html_text);
  });

  return marker;
}

var	site_data_arr = new Array(
		new Array( "IA", "41.8450", "-90.1757",
					"<b>ADM Clinton</b><br /> in Clinton county, IA<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2011&amp;site_id=231\" target=\"_blank\">2011</a> - 2 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2010&amp;site_id=231\" target=\"_blank\">2010</a> - 3 birds",
					new String( "2011,2010" ), "sm" ),
		new Array( "IA", "43.023404", "91.1733",
					"<b>Agri-Bunge Stackhouse</b><br /> in Clayton county, IA<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2010&amp;site_id=237\" target=\"_blank\">2010</a> - 3 birds",
					new String( "2010" ), "bl" ),
		new Array( "IA", "41.0545", "-92.4719",
					"<b>Alliant Energy Plant, Chillicothe (Ottumwa Generating Station)</b><br /> in Wapello county, IA<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2011&amp;site_id=131\" target=\"_blank\">2011</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2010&amp;site_id=131\" target=\"_blank\">2010</a> - 2 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2009&amp;site_id=131\" target=\"_blank\">2009</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2007&amp;site_id=131\" target=\"_blank\">2007</a> - 2 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2006&amp;site_id=131\" target=\"_blank\">2006</a> - 1 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2005&amp;site_id=131\" target=\"_blank\">2005</a> - 2 birds",
					new String( "2011,2010,2009,2007,2006,2005" ), "sm" ),
		new Array( "IA", "41.5661", "-93.6474",
					"<b>American Republic, Des Moines</b><br /> in Polk county, IA<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2010&amp;site_id=266\" target=\"_blank\">2010</a> - 2 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2009&amp;site_id=266\" target=\"_blank\">2009</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2008&amp;site_id=266\" target=\"_blank\">2008</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2007&amp;site_id=266\" target=\"_blank\">2007</a> - 4 birds",
					new String( "2010,2009,2008,2007" ), "bl" ),
		new Array( "IA", "41.5", "-91.3",
					"<b>Cedar Rapids</b><br /> in Linn county, IA<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2008&amp;site_id=77\" target=\"_blank\">2008</a> - 2 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2006&amp;site_id=77\" target=\"_blank\">2006</a> - 4 birds",
					new String( "2008,2006" ), "bl" ),
		new Array( "IA", "41.9767", "-91.6732",
					"<b>Firstar Bank/US Bank, Cedar Rapids</b><br /> in Linn county, IA<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2011&amp;site_id=214\" target=\"_blank\">2011</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2010&amp;site_id=214\" target=\"_blank\">2010</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2007&amp;site_id=214\" target=\"_blank\">2007</a> - 5 birds",
					new String( "2011,2010,2007" ), "bl" ),
		new Array( "IA", "41.47882", "90.63222",
					"<b>I-280 Bridge, Quad Cities</b><br /> in Scott county, IA<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2007&amp;site_id=187\" target=\"_blank\">2007</a> - 4 birds",
					new String( "2007" ), "br" ),
		new Array( "IA", "41.57951", "90.3646",
					"<b>I-80 Bridge, Quad Cities</b><br /> in Scott county, IA",
					new String( "" ), "br" ),
		new Array( "IA", "41.2", "-91",
					"<b>MEC Louisa</b><br /> in Louisa county, IA<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2010&amp;site_id=120\" target=\"_blank\">2010</a> - 1 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2008&amp;site_id=120\" target=\"_blank\">2008</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2007&amp;site_id=120\" target=\"_blank\">2007</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2006&amp;site_id=120\" target=\"_blank\">2006</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2005&amp;site_id=120\" target=\"_blank\">2005</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2004&amp;site_id=120\" target=\"_blank\">2004</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2003&amp;site_id=120\" target=\"_blank\">2003</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2002&amp;site_id=120\" target=\"_blank\">2002</a> - 1 birds",
					new String( "2010,2008,2007,2006,2005,2004,2003,2002" ), "sm" ),
		new Array( "IA", "41.5168", "-90.5712",
					"<b>MidAmerican Energy, Davenport, Scott County, Quad Cities</b><br /> in Scott county, IA<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2011&amp;site_id=132\" target=\"_blank\">2011</a> - 1 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2010&amp;site_id=132\" target=\"_blank\">2010</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2009&amp;site_id=132\" target=\"_blank\">2009</a> - 2 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2008&amp;site_id=132\" target=\"_blank\">2008</a> - 1 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2006&amp;site_id=132\" target=\"_blank\">2006</a> - 2 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2005&amp;site_id=132\" target=\"_blank\">2005</a> - 1 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2002&amp;site_id=132\" target=\"_blank\">2002</a> - 3 birds",
					new String( "2011,2010,2009,2008,2006,2005,2002" ), "bl" ),
		new Array( "IA", "41.8102", "90.2362",
					"<b>ML Kapp Generating Station w/Alliant Energy, Clinton</b><br />, IA<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2009&amp;site_id=218\" target=\"_blank\">2009</a> - 2 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2007&amp;site_id=218\" target=\"_blank\">2007</a> - 1 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1999&amp;site_id=218\" target=\"_blank\">1999</a> - 1 birds",
					new String( "2009,2007,1999" ), "bl" ),
		new Array( "IL", "41.5", "-87.3",
					"<b>Jackson Street Prison, Chicago</b><br /> in Cook county, IL<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2011&amp;site_id=122\" target=\"_blank\">2011</a> - 1 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2008&amp;site_id=122\" target=\"_blank\">2008</a> - 1 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2007&amp;site_id=122\" target=\"_blank\">2007</a> - 1 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2006&amp;site_id=122\" target=\"_blank\">2006</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2005&amp;site_id=122\" target=\"_blank\">2005</a> - 2 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2004&amp;site_id=122\" target=\"_blank\">2004</a> - 1 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2003&amp;site_id=122\" target=\"_blank\">2003</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2002&amp;site_id=122\" target=\"_blank\">2002</a> - 1 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2001&amp;site_id=122\" target=\"_blank\">2001</a> - 1 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2000&amp;site_id=122\" target=\"_blank\">2000</a> - 2 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1999&amp;site_id=122\" target=\"_blank\">1999</a> - 2 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1998&amp;site_id=122\" target=\"_blank\">1998</a> - 3 birds",
					new String( "2011,2008,2007,2006,2005,2004,2003,2002,2001,2000,1999,1998" ), "bl" ),
		new Array( "IL", "41.881885", "87.62467",
					"<b>Millennium Park, Chicago</b><br /> in Cook county, IL<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2011&amp;site_id=257\" target=\"_blank\">2011</a> - 2 birds",
					new String( "2011" ), "bl" ),
		new Array( "IL", "42.0961099", "80.158729",
					"<b>Savanna silo</b><br /> in Carroll county, IL<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2011&amp;site_id=260\" target=\"_blank\">2011</a> - 5 birds",
					new String( "2011" ), "bl" ),
		new Array( "IL", "41.870867", "-87.624631",
					"<b>south loop / Michigan Ave Chicago</b><br /> in Cook county, IL<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2011&amp;site_id=189\" target=\"_blank\">2011</a> - 2 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2010&amp;site_id=189\" target=\"_blank\">2010</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2009&amp;site_id=189\" target=\"_blank\">2009</a> - 3 birds",
					new String( "2011,2010,2009" ), "bl" ),
		new Array( "IL", "41.870867", "-87.624631",
					"<b>south loop Michigan Ave Chicago (duplicate - do not use)</b><br /> in Cook county, IL",
					new String( "" ), "bl" ),
		new Array( "IL", "41.985992", "-87.683817",
					"<b>St. Mary\'s</b><br /> in Cook county, IL<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2011&amp;site_id=259\" target=\"_blank\">2011</a> - 4 birds",
					new String( "2011" ), "bl" ),
		new Array( "IN", "41.6716666", "-87.48",
					"<b>BP Amoco, Whiting</b><br /> in Lake county, IN<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2011&amp;site_id=105\" target=\"_blank\">2011</a> - 1 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2008&amp;site_id=105\" target=\"_blank\">2008</a> - 2 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2007&amp;site_id=105\" target=\"_blank\">2007</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2006&amp;site_id=105\" target=\"_blank\">2006</a> - 2 birds",
					new String( "2011,2008,2007,2006" ), "sm" ),
		new Array( "IN", "41.6677", "-87.4786",
					"<b>BP Plant -Whiting</b><br /> in Lake county, IN",
					new String( "" ), "bl" ),
		new Array( "IN", "41.64017", "-87.15483",
					"<b>Cargill Plant - Burns Harbor</b><br /> in Porter county, IN<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2007&amp;site_id=137\" target=\"_blank\">2007</a> - 4 birds",
					new String( "2007" ), "bl" ),
		new Array( "IN", "38.2640", "-85.838",
					"<b>Gallagher Power Plant, New Albany</b><br /> in Floyd county, IN<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2011&amp;site_id=258\" target=\"_blank\">2011</a> - 3 birds",
					new String( "2011" ), "sm" ),
		new Array( "IN", "39.7097", "86.1964",
					"<b>IPL Stout Plant, Indianapolis</b><br /> in Marion county, IN<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2011&amp;site_id=216\" target=\"_blank\">2011</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2010&amp;site_id=216\" target=\"_blank\">2010</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2008&amp;site_id=216\" target=\"_blank\">2008</a> - 5 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2006&amp;site_id=216\" target=\"_blank\">2006</a> - 2 birds",
					new String( "2011,2010,2008,2006" ), "bl" ),
		new Array( "IN", "39.7683333", "-86.1583333",
					"<b>Market Tower, Indianapolis</b><br /> in Marion county, IN<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2011&amp;site_id=99\" target=\"_blank\">2011</a> - 1 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2010&amp;site_id=99\" target=\"_blank\">2010</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2009&amp;site_id=99\" target=\"_blank\">2009</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2008&amp;site_id=99\" target=\"_blank\">2008</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2007&amp;site_id=99\" target=\"_blank\">2007</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2006&amp;site_id=99\" target=\"_blank\">2006</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2005&amp;site_id=99\" target=\"_blank\">2005</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2004&amp;site_id=99\" target=\"_blank\">2004</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2003&amp;site_id=99\" target=\"_blank\">2003</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2002&amp;site_id=99\" target=\"_blank\">2002</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2001&amp;site_id=99\" target=\"_blank\">2001</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2000&amp;site_id=99\" target=\"_blank\">2000</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1999&amp;site_id=99\" target=\"_blank\">1999</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1998&amp;site_id=99\" target=\"_blank\">1998</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1996&amp;site_id=99\" target=\"_blank\">1996</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1995&amp;site_id=99\" target=\"_blank\">1995</a> - 4 birds",
					new String( "2011,2010,2009,2008,2007,2006,2005,2004,2003,2002,2001,2000,1999,1998,1996,1995" ), "bl" ),
		new Array( "IN", "41.672662", "-87.448878",
					"<b>Mittal Steel - Indiana Harbor West, #3 Steel, East Chicago</b><br /> in Lake county, IN<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2008&amp;site_id=150\" target=\"_blank\">2008</a> - 2 birds",
					new String( "2008" ), "bl" ),
		new Array( "IN", "41.6735", "-87.4337",
					"<b>Mittal Steel Lime Plants - East Chicago</b><br /> in Lake county, IN<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2011&amp;site_id=138\" target=\"_blank\">2011</a> - 3 birds",
					new String( "2011" ), "bl" ),
		new Array( "IN", "41.7216666", "-86.91",
					"<b>NIPSCO Power Plant, Michigan City</b><br /> in La Porte county, IN<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2011&amp;site_id=102\" target=\"_blank\">2011</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2009&amp;site_id=102\" target=\"_blank\">2009</a> - 2 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2008&amp;site_id=102\" target=\"_blank\">2008</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2006&amp;site_id=102\" target=\"_blank\">2006</a> - 2 birds",
					new String( "2011,2009,2008,2006" ), "sm" ),
		new Array( "IN", "41.2183333", "-87.14",
					"<b>NIPSCO Schahfer Plant, Wheatfield</b><br /> in Jasper county, IN<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2011&amp;site_id=103\" target=\"_blank\">2011</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2006&amp;site_id=103\" target=\"_blank\">2006</a> - 5 birds",
					new String( "2011,2006" ), "sm" ),
		new Array( "IN", "41.0766666", "-85.1383333",
					"<b>One Summit Square, Fort Wayne</b><br /> in Allen county, IN<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2007&amp;site_id=100\" target=\"_blank\">2007</a> - 2 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2006&amp;site_id=100\" target=\"_blank\">2006</a> - 2 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2005&amp;site_id=100\" target=\"_blank\">2005</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2004&amp;site_id=100\" target=\"_blank\">2004</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2003&amp;site_id=100\" target=\"_blank\">2003</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2002&amp;site_id=100\" target=\"_blank\">2002</a> - 2 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2001&amp;site_id=100\" target=\"_blank\">2001</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2000&amp;site_id=100\" target=\"_blank\">2000</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1999&amp;site_id=100\" target=\"_blank\">1999</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1998&amp;site_id=100\" target=\"_blank\">1998</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1997&amp;site_id=100\" target=\"_blank\">1997</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1996&amp;site_id=100\" target=\"_blank\">1996</a> - 2 birds",
					new String( "2007,2006,2005,2004,2003,2002,2001,2000,1999,1998,1997,1996" ), "bl" ),
		new Array( "IN", "41.6766666", "-86.2533333",
					"<b>Tower Building, South Bend (City-County Building)</b><br /> in St. Joseph county, IN<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2011&amp;site_id=101\" target=\"_blank\">2011</a> - 2 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2010&amp;site_id=101\" target=\"_blank\">2010</a> - 2 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2009&amp;site_id=101\" target=\"_blank\">2009</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2008&amp;site_id=101\" target=\"_blank\">2008</a> - 2 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2007&amp;site_id=101\" target=\"_blank\">2007</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2006&amp;site_id=101\" target=\"_blank\">2006</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2005&amp;site_id=101\" target=\"_blank\">2005</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2004&amp;site_id=101\" target=\"_blank\">2004</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2003&amp;site_id=101\" target=\"_blank\">2003</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=0&amp;site_id=101\" target=\"_blank\">0</a> - 1 birds",
					new String( "2011,2010,2009,2008,2007,2006,2005,2004,2003,0" ), "bl" ),
		new Array( "IN", "41.615", "-87.3216666",
					"<b>U.S. Steel, Gary (Sinter Plant)</b><br /> in Lake county, IN<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2010&amp;site_id=104\" target=\"_blank\">2010</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2009&amp;site_id=104\" target=\"_blank\">2009</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2007&amp;site_id=104\" target=\"_blank\">2007</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2006&amp;site_id=104\" target=\"_blank\">2006</a> - 3 birds",
					new String( "2010,2009,2007,2006" ), "bl" ),
		new Array( "IN", "41.6104", "-87.3125",
					"<b>US Steel old coke plant, Gary</b><br /> in Lake county, IN<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2011&amp;site_id=139\" target=\"_blank\">2011</a> - 2 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2010&amp;site_id=139\" target=\"_blank\">2010</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2009&amp;site_id=139\" target=\"_blank\">2009</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2008&amp;site_id=139\" target=\"_blank\">2008</a> - 1 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2007&amp;site_id=139\" target=\"_blank\">2007</a> - 2 birds",
					new String( "2011,2010,2009,2008,2007" ), "bl" ),
		new Array( "KS", "39.048421", "-95.674545",
					"<b>Kansas Power and Light, Topeka (Westar Energy)</b><br /> in Shawnee county, KS<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2011&amp;site_id=239\" target=\"_blank\">2011</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2010&amp;site_id=239\" target=\"_blank\">2010</a> - 2 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2009&amp;site_id=239\" target=\"_blank\">2009</a> - 1 birds",
					new String( "2011,2010,2009" ), "bl" ),
		new Array( "KY", "38.20299", "84.87681",
					"<b>Capital Plaza Tower, Franklin County, Frankfort KY</b><br /> in Franklin county, KY<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2010&amp;site_id=244\" target=\"_blank\">2010</a> - 1 birds",
					new String( "2010" ), "bl" ),
		new Array( "KY", "39.057462", "84.430879",
					"<b>Combs-Hehl (I-275) Bridge</b><br /> in Campbell county, KY<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2009&amp;site_id=226\" target=\"_blank\">2009</a> - 1 birds",
					new String( "2009" ), "br" ),
		new Array( "KY", "38.905556", "84.850054",
					"<b>Duke Energy East Bend Station</b><br /> in Boone county, KY<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2010&amp;site_id=201\" target=\"_blank\">2010</a> - 2 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2009&amp;site_id=201\" target=\"_blank\">2009</a> - 2 birds",
					new String( "2010,2009" ), "bl" ),
		new Array( "KY", "38.700089", "-83.817303",
					"<b>EKPC Spurlock - On the Ohio River 5.5 mi NW of Maysville, Mason Co., KY</b><br /> in Mason county, KY<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2009&amp;site_id=143\" target=\"_blank\">2009</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2008&amp;site_id=143\" target=\"_blank\">2008</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2007&amp;site_id=143\" target=\"_blank\">2007</a> - 4 birds",
					new String( "2009,2008,2007" ), "sm" ),
		new Array( "KY", "38.748798", "85.037433",
					"<b>Kentucky Utilities (KU) Ghent Station, Ghent</b><br /> in Carroll county, KY<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2011&amp;site_id=196\" target=\"_blank\">2011</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2009&amp;site_id=196\" target=\"_blank\">2009</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2007&amp;site_id=196\" target=\"_blank\">2007</a> - 1 birds",
					new String( "2011,2009,2007" ), "sm" ),
		new Array( "KY", "38.04775", "-84.49968",
					"<b>Lexington Downtown (World Trade Center Building)</b><br /> in Fayette county, KY",
					new String( "" ), "bl" ),
		new Array( "KY", "38.584505", "-85.411384",
					"<b>LG&E (Trimble County) Plant, Bedford, Trimble Cty.</b><br /> in Trimble county, KY<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2011&amp;site_id=107\" target=\"_blank\">2011</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2010&amp;site_id=107\" target=\"_blank\">2010</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2009&amp;site_id=107\" target=\"_blank\">2009</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2008&amp;site_id=107\" target=\"_blank\">2008</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2007&amp;site_id=107\" target=\"_blank\">2007</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2006&amp;site_id=107\" target=\"_blank\">2006</a> - 4 birds",
					new String( "2011,2010,2009,2008,2007,2006" ), "sm" ),
		new Array( "KY", "38.053197", "85.910019",
					"<b>LG&E Mill Creek located along the Ohio River, off Dixie Hwy US 60 @ 4 miles NE of West, Point, KY.</b><br /> in Jefferson county, KY<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2011&amp;site_id=144\" target=\"_blank\">2011</a> - 2 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2010&amp;site_id=144\" target=\"_blank\">2010</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2009&amp;site_id=144\" target=\"_blank\">2009</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2008&amp;site_id=144\" target=\"_blank\">2008</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2007&amp;site_id=144\" target=\"_blank\">2007</a> - 2 birds",
					new String( "2011,2010,2009,2008,2007" ), "sm" ),
		new Array( "KY", "38.727145", "85.370399",
					"<b>Milton-Madison U.S. 421 Bridge, Ohio River, Milton</b><br /> in Trimble county, KY<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2011&amp;site_id=108\" target=\"_blank\">2011</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2009&amp;site_id=108\" target=\"_blank\">2009</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2008&amp;site_id=108\" target=\"_blank\">2008</a> - 2 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2007&amp;site_id=108\" target=\"_blank\">2007</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2006&amp;site_id=108\" target=\"_blank\">2006</a> - 2 birds",
					new String( "2011,2009,2008,2007,2006" ), "br" ),
		new Array( "KY", "38.263824", "-85.73802",
					"<b>Ohio River (Kennedy/Big 4) Bridges, Jeffersonville, Jefferson Cty</b><br /> in Jefferson county, KY<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2010&amp;site_id=247\" target=\"_blank\">2010</a> - 1 birds",
					new String( "2010" ), "br" ),
		new Array( "KY", "38.212201", "85.845096",
					"<b>Rohm and Haas Facility - do not use</b><br /> in Jefferson county, KY",
					new String( "" ), "bl" ),
		new Array( "KY", "38.212201", "85.845096",
					"<b>Rohm and Haas Facility/Dow Chemical</b><br /> in Jefferson county, KY<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2011&amp;site_id=195\" target=\"_blank\">2011</a> - 1 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2009&amp;site_id=195\" target=\"_blank\">2009</a> - 3 birds",
					new String( "2011,2009" ), "bl" ),
		new Array( "MB", "49.3", "-100",
					"<b>Brandon</b><br />, MB",
					new String( "" ), "bl" ),
		new Array( "MB", "49.4", "-97.1",
					"<b>Radisson Hotel, Winnipeg</b><br />, MB<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2010&amp;site_id=256\" target=\"_blank\">2010</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2009&amp;site_id=256\" target=\"_blank\">2009</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2007&amp;site_id=256\" target=\"_blank\">2007</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2006&amp;site_id=256\" target=\"_blank\">2006</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2005&amp;site_id=256\" target=\"_blank\">2005</a> - 2 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2004&amp;site_id=256\" target=\"_blank\">2004</a> - 1 birds",
					new String( "2010,2009,2007,2006,2005,2004" ), "bl" ),
		new Array( "MI", "42.3316666", "-83.0533333",
					"<b>AT&T 444 Michigan Ave. Detroit</b><br /> in Wayne county, MI",
					new String( "" ), "bl" ),
		new Array( "MI", "42.284227", "-83.728931",
					"<b>Bell Tower/Medical Center/U of Michigan  Ann Arbor</b><br /> in Washtenaw county, MI<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2011&amp;site_id=210\" target=\"_blank\">2011</a> - 1 birds",
					new String( "2011" ), "bl" ),
		new Array( "MI", "42.9836111", "-83.4425",
					"<b>Blue Water Bridge (Do Not Use)</b><br /> in St. Clair county, MI<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2009&amp;site_id=153\" target=\"_blank\">2009</a> - 4 birds",
					new String( "2009" ), "br" ),
		new Array( "MI", "42.9988888", "-82.42357",
					"<b>Blue Water Bridge, Port Huron</b><br /> in St Clair county, MI<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2011&amp;site_id=72\" target=\"_blank\">2011</a> - 1 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2010&amp;site_id=72\" target=\"_blank\">2010</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2008&amp;site_id=72\" target=\"_blank\">2008</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2007&amp;site_id=72\" target=\"_blank\">2007</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2006&amp;site_id=72\" target=\"_blank\">2006</a> - 3 birds",
					new String( "2011,2010,2008,2007,2006" ), "br" ),
		new Array( "MI", "42.7183", "-84.55784",
					"<b>Board of Water and Light Power Plant, MI Nat\'l Bank, Lansing</b><br /> in Ingham county, MI<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2011&amp;site_id=213\" target=\"_blank\">2011</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2010&amp;site_id=213\" target=\"_blank\">2010</a> - 2 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2008&amp;site_id=213\" target=\"_blank\">2008</a> - 5 birds",
					new String( "2011,2010,2008" ), "bl" ),
		new Array( "MI", "43.2545", "-86.24182",
					"<b>Consumers Energy B.C. Cobb Plant, Muskegon</b><br /> in Muskegon county, MI<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2011&amp;site_id=129\" target=\"_blank\">2011</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2010&amp;site_id=129\" target=\"_blank\">2010</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2009&amp;site_id=129\" target=\"_blank\">2009</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2008&amp;site_id=129\" target=\"_blank\">2008</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2007&amp;site_id=129\" target=\"_blank\">2007</a> - 5 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2006&amp;site_id=129\" target=\"_blank\">2006</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2005&amp;site_id=129\" target=\"_blank\">2005</a> - 5 birds",
					new String( "2011,2010,2009,2008,2007,2006,2005" ), "sm" ),
		new Array( "MI", "43.6422", "-83.8407",
					"<b>Consumers Energy D.E. Karn/JC Weadock Plant</b><br /> in Bay county, MI",
					new String( "" ), "bl" ),
		new Array( "MI", "41.8908", "-83.34575",
					"<b>Detroit Edison Power Plant, Monroe</b><br /> in Monroe county, MI<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2011&amp;site_id=126\" target=\"_blank\">2011</a> - 2 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2010&amp;site_id=126\" target=\"_blank\">2010</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2009&amp;site_id=126\" target=\"_blank\">2009</a> - 2 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2007&amp;site_id=126\" target=\"_blank\">2007</a> - 2 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2006&amp;site_id=126\" target=\"_blank\">2006</a> - 2 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2003&amp;site_id=126\" target=\"_blank\">2003</a> - 2 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2001&amp;site_id=126\" target=\"_blank\">2001</a> - 1 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1999&amp;site_id=126\" target=\"_blank\">1999</a> - 1 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1998&amp;site_id=126\" target=\"_blank\">1998</a> - 1 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1997&amp;site_id=126\" target=\"_blank\">1997</a> - 1 birds",
					new String( "2011,2010,2009,2007,2006,2003,2001,1999,1998,1997" ), "bl" ),
		new Array( "MI", "42.1221", "-83.18088",
					"<b>DTE Energy Trenton Channel Power Plant</b><br /> in Wayne county, MI",
					new String( "" ), "bl" ),
		new Array( "MI", "41.8919444", "-83.3513888",
					"<b>DTE Monroe Power Plant</b><br /> in Monroe county, MI<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2008&amp;site_id=167\" target=\"_blank\">2008</a> - 2 birds",
					new String( "2008" ), "sm" ),
		new Array( "MI", "43.01968", "-83",
					"<b>Durant Hotel/UM Northbank Center, Flint</b><br /> in Genesee county, MI<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2011&amp;site_id=212\" target=\"_blank\">2011</a> - 2 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2009&amp;site_id=212\" target=\"_blank\">2009</a> - 1 birds",
					new String( "2011,2009" ), "bl" ),
		new Array( "MI", "42.3262", "-85.18869",
					"<b>Federal Center Building, Battle Creek</b><br /> in Calhoun county, MI",
					new String( "" ), "bl" ),
		new Array( "MI", "42.3688888", "-83.0763888",
					"<b>Fisher Building</b><br /> in Wayne county, MI<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2007&amp;site_id=154\" target=\"_blank\">2007</a> - 1 birds",
					new String( "2007" ), "bl" ),
		new Array( "MI", "43.0685", "-86.23294",
					"<b>Grand Haven Board of Light & Power, Sims Plant, Grand Haven</b><br /> in Ottawa county, MI<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2011&amp;site_id=127\" target=\"_blank\">2011</a> - 1 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2010&amp;site_id=127\" target=\"_blank\">2010</a> - 2 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2009&amp;site_id=127\" target=\"_blank\">2009</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2008&amp;site_id=127\" target=\"_blank\">2008</a> - 2 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2007&amp;site_id=127\" target=\"_blank\">2007</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2006&amp;site_id=127\" target=\"_blank\">2006</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2005&amp;site_id=127\" target=\"_blank\">2005</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2004&amp;site_id=127\" target=\"_blank\">2004</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2003&amp;site_id=127\" target=\"_blank\">2003</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2002&amp;site_id=127\" target=\"_blank\">2002</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2001&amp;site_id=127\" target=\"_blank\">2001</a> - 3 birds",
					new String( "2011,2010,2009,2008,2007,2006,2005,2004,2003,2002,2001" ), "sm" ),
		new Array( "MI", "46.50383", "-84.36268",
					"<b>International Bridge, Sault Ste. Marie</b><br /> in Chippewa county, MI",
					new String( "" ), "br" ),
		new Array( "MI", "42.2475", "-84.40648",
					"<b>Jackson County Building  Jackson</b><br /> in Jackson county, MI<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2011&amp;site_id=211\" target=\"_blank\">2011</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2010&amp;site_id=211\" target=\"_blank\">2010</a> - 3 birds",
					new String( "2011,2010" ), "bl" ),
		new Array( "MI", "42.9669", "-85.67011",
					"<b>Kent County Courthouse, Grand Rapids</b><br /> in Kent county, MI<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2011&amp;site_id=169\" target=\"_blank\">2011</a> - 1 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2008&amp;site_id=169\" target=\"_blank\">2008</a> - 2 birds",
					new String( "2011,2008" ), "bl" ),
		new Array( "MI", "45.811142", "-84.728751",
					"<b>Mackinac Bridge</b><br /> in Emmet county, MI<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2010&amp;site_id=240\" target=\"_blank\">2010</a> - 3 birds",
					new String( "2010" ), "br" ),
		new Array( "MI", "42.5966666", "-82.8780555",
					"<b>Macomb County Building, Mt. Clements, Macomb Cty</b><br /> in Macomb county, MI<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2011&amp;site_id=155\" target=\"_blank\">2011</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2010&amp;site_id=155\" target=\"_blank\">2010</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2009&amp;site_id=155\" target=\"_blank\">2009</a> - 1 birds",
					new String( "2011,2010,2009" ), "bl" ),
		new Array( "MI", "42.596773", "82.8783",
					"<b>Mt. Clemens (do not use)</b><br /> in Macomb county, MI<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2008&amp;site_id=168\" target=\"_blank\">2008</a> - 3 birds",
					new String( "2008" ), "bl" ),
		new Array( "MI", "42.2613", "-83.12397",
					"<b>National Steel, River Rouge</b><br /> in Wayne county, MI",
					new String( "" ), "bl" ),
		new Array( "MI", "42.3693", "-83.07756",
					"<b>New Center/Fisher Building, Detroit</b><br /> in Wayne county, MI<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2007&amp;site_id=124\" target=\"_blank\">2007</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2006&amp;site_id=124\" target=\"_blank\">2006</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2005&amp;site_id=124\" target=\"_blank\">2005</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2004&amp;site_id=124\" target=\"_blank\">2004</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2003&amp;site_id=124\" target=\"_blank\">2003</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2001&amp;site_id=124\" target=\"_blank\">2001</a> - 2 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2000&amp;site_id=124\" target=\"_blank\">2000</a> - 2 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1999&amp;site_id=124\" target=\"_blank\">1999</a> - 2 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1998&amp;site_id=124\" target=\"_blank\">1998</a> - 1 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1997&amp;site_id=124\" target=\"_blank\">1997</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1996&amp;site_id=124\" target=\"_blank\">1996</a> - 3 birds",
					new String( "2007,2006,2005,2004,2003,2001,2000,1999,1998,1997,1996" ), "bl" ),
		new Array( "MI", "42.6385", "-83.29069",
					"<b>Pontiac Osteopathic Hospital</b><br /> in Oakland county, MI",
					new String( "" ), "bl" ),
		new Array( "MI", "42.9118", "-86.20185",
					"<b>Port Sheldon JH Power Plant (now Consumers Energy Campbell)</b><br /> in Ottawa county, MI<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2011&amp;site_id=73\" target=\"_blank\">2011</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2010&amp;site_id=73\" target=\"_blank\">2010</a> - 2 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2009&amp;site_id=73\" target=\"_blank\">2009</a> - 2 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2008&amp;site_id=73\" target=\"_blank\">2008</a> - 2 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2007&amp;site_id=73\" target=\"_blank\">2007</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2006&amp;site_id=73\" target=\"_blank\">2006</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2004&amp;site_id=73\" target=\"_blank\">2004</a> - 3 birds",
					new String( "2011,2010,2009,2008,2007,2006,2004" ), "bl" ),
		new Array( "MI", "42.3457", "-83.03542",
					"<b>St Joseph\'s Catholic Church Detroit</b><br /> in Wayne county, MI",
					new String( "" ), "bl" ),
		new Array( "MI", "42.4169444", "-83.1427777",
					"<b>University of Detroit Mercy Bell Tower, Wayne county, MI</b><br /> in Wayne county, MI<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2011&amp;site_id=156\" target=\"_blank\">2011</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2008&amp;site_id=156\" target=\"_blank\">2008</a> - 1 birds",
					new String( "2011,2008" ), "bl" ),
		new Array( "MI", "42.353", "-82.98859",
					"<b>Whittier Apartments, Detroit</b><br /> in Wayne county, MI<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2007&amp;site_id=125\" target=\"_blank\">2007</a> - 1 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2006&amp;site_id=125\" target=\"_blank\">2006</a> - 2 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1999&amp;site_id=125\" target=\"_blank\">1999</a> - 2 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1998&amp;site_id=125\" target=\"_blank\">1998</a> - 2 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1997&amp;site_id=125\" target=\"_blank\">1997</a> - 1 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1995&amp;site_id=125\" target=\"_blank\">1995</a> - 1 birds",
					new String( "2007,2006,1999,1998,1997,1995" ), "bl" ),
		new Array( "MI", "42.3525", "-82.9877777",
					"<b>Whittier Hotel</b><br /> in Wayne county, MI<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2008&amp;site_id=166\" target=\"_blank\">2008</a> - 3 birds",
					new String( "2008" ), "bl" ),
		new Array( "MN", "47.20", "-91.115",
					"<b>1.5 miles E of Palisade Head & 3/4 mile from intersection of Hwy s 1 & 61</b><br /> in Lake county, MN<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2011&amp;site_id=142\" target=\"_blank\">2011</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2009&amp;site_id=142\" target=\"_blank\">2009</a> - 2 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2007&amp;site_id=142\" target=\"_blank\">2007</a> - 3 birds",
					new String( "2011,2009,2007" ), "cl" ),
		new Array( "MN", "47.20", "-91.15",
					"<b>1.5 miles E. of Palisade Head & 3/4 mile from intersection of Hwys 1 & 61</b><br /> in Lake county, MN<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2010&amp;site_id=141\" target=\"_blank\">2010</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2008&amp;site_id=141\" target=\"_blank\">2008</a> - 4 birds",
					new String( "2010,2008" ), "cl" ),
		new Array( "MN", "44.7900277", "-92.9126111",
					"<b>3M Langdon Facility</b><br /> in Washington county, MN<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2011&amp;site_id=157\" target=\"_blank\">2011</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2009&amp;site_id=157\" target=\"_blank\">2009</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2008&amp;site_id=157\" target=\"_blank\">2008</a> - 3 birds",
					new String( "2011,2009,2008" ), "bl" ),
		new Array( "MN", "44.9635833", "-93.0647166",
					"<b>3M Water Tower, 7th Street, St. Paul, MN</b><br /> in Ramsey county, MN<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2008&amp;site_id=67\" target=\"_blank\">2008</a> - 2 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2006&amp;site_id=67\" target=\"_blank\">2006</a> - 2 birds",
					new String( "2008,2006" ), "bl" ),
		new Array( "MN", "44.0526111", "-91.6298611",
					"<b>Bay State Milling</b><br />, MN<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2010&amp;site_id=199\" target=\"_blank\">2010</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2009&amp;site_id=199\" target=\"_blank\">2009</a> - 3 birds",
					new String( "2010,2009" ), "bl" ),
		new Array( "MN", "44.5", "-93.2",
					"<b>Black Dog Plant Eagan</b><br /> in Dakota county, MN<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1994&amp;site_id=7\" target=\"_blank\">1994</a> - 3 birds",
					new String( "1994" ), "bl" ),
		new Array( "MN", "44.8107222", "-93.2521666",
					"<b>Black Dog Plant Eagan</b><br /> in Dakota county, MN<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2011&amp;site_id=6\" target=\"_blank\">2011</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2010&amp;site_id=6\" target=\"_blank\">2010</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2009&amp;site_id=6\" target=\"_blank\">2009</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2008&amp;site_id=6\" target=\"_blank\">2008</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2007&amp;site_id=6\" target=\"_blank\">2007</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2006&amp;site_id=6\" target=\"_blank\">2006</a> - 2 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2005&amp;site_id=6\" target=\"_blank\">2005</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2004&amp;site_id=6\" target=\"_blank\">2004</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2001&amp;site_id=6\" target=\"_blank\">2001</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2000&amp;site_id=6\" target=\"_blank\">2000</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1999&amp;site_id=6\" target=\"_blank\">1999</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1998&amp;site_id=6\" target=\"_blank\">1998</a> - 2 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1997&amp;site_id=6\" target=\"_blank\">1997</a> - 2 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1996&amp;site_id=6\" target=\"_blank\">1996</a> - 2 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1995&amp;site_id=6\" target=\"_blank\">1995</a> - 1 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1993&amp;site_id=6\" target=\"_blank\">1993</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=0&amp;site_id=6\" target=\"_blank\">0</a> - 1 birds",
					new String( "2011,2010,2009,2008,2007,2006,2005,2004,2001,2000,1999,1998,1997,1996,1995,1993,0" ), "sm" ),
		new Array( "MN", "46.750006", "-92.1012261",
					"<b>Blatnik Bridge Duluth</b><br /> in St. Louis county, MN<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2008&amp;site_id=45\" target=\"_blank\">2008</a> - 1 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1999&amp;site_id=45\" target=\"_blank\">1999</a> - 1 birds",
					new String( "2008,1999" ), "br" ),
		new Array( "MN", "46.73995", "-92.1525666",
					"<b>Bong Bridge Duluth</b><br /> in St. Louis county, MN<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2006&amp;site_id=46\" target=\"_blank\">2006</a> - 2 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1997&amp;site_id=46\" target=\"_blank\">1997</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1994&amp;site_id=46\" target=\"_blank\">1994</a> - 1 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1991&amp;site_id=46\" target=\"_blank\">1991</a> - 2 birds",
					new String( "2006,1997,1994,1991" ), "br" ),
		new Array( "MN", "47.2566666", "-93.6516666",
					"<b>Boswell Energy Center Cohasset</b><br /> in Itasca county, MN<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2011&amp;site_id=25\" target=\"_blank\">2011</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2009&amp;site_id=25\" target=\"_blank\">2009</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2007&amp;site_id=25\" target=\"_blank\">2007</a> - 2 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2005&amp;site_id=25\" target=\"_blank\">2005</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2004&amp;site_id=25\" target=\"_blank\">2004</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2003&amp;site_id=25\" target=\"_blank\">2003</a> - 2 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2002&amp;site_id=25\" target=\"_blank\">2002</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1999&amp;site_id=25\" target=\"_blank\">1999</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1997&amp;site_id=25\" target=\"_blank\">1997</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1996&amp;site_id=25\" target=\"_blank\">1996</a> - 1 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1995&amp;site_id=25\" target=\"_blank\">1995</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1994&amp;site_id=25\" target=\"_blank\">1994</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1993&amp;site_id=25\" target=\"_blank\">1993</a> - 2 birds",
					new String( "2011,2009,2007,2005,2004,2003,2002,1999,1997,1996,1995,1994,1993" ), "sm" ),
		new Array( "MN", "47 43022", "-90",
					"<b>Butterwort Cliff, Cascade State Park</b><br /> in Lake county, MN<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2010&amp;site_id=190\" target=\"_blank\">2010</a> - 2 birds",
					new String( "2010" ), "cl" ),
		new Array( "MN", "47 35042", "-90",
					"<b>Carlton Peak, Temperance River State Park</b><br /> in Cook county, MN<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2009&amp;site_id=191\" target=\"_blank\">2009</a> - 3 birds",
					new String( "2009" ), "cl" ),
		new Array( "MN", "47.1310833", "-91.4689333",
					"<b>Castle Cliff Castle Danger</b><br /> in Lake county, MN<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2011&amp;site_id=27\" target=\"_blank\">2011</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2010&amp;site_id=27\" target=\"_blank\">2010</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2009&amp;site_id=27\" target=\"_blank\">2009</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2008&amp;site_id=27\" target=\"_blank\">2008</a> - 2 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2006&amp;site_id=27\" target=\"_blank\">2006</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2005&amp;site_id=27\" target=\"_blank\">2005</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2004&amp;site_id=27\" target=\"_blank\">2004</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2003&amp;site_id=27\" target=\"_blank\">2003</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2002&amp;site_id=27\" target=\"_blank\">2002</a> - 2 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2001&amp;site_id=27\" target=\"_blank\">2001</a> - 3 birds",
					new String( "2011,2010,2009,2008,2006,2005,2004,2003,2002,2001" ), "cl" ),
		new Array( "MN", "44.97715", "-93.2727333",
					"<b>City Center Minneapolis</b><br /> in Hennepin county, MN<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2011&amp;site_id=12\" target=\"_blank\">2011</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2010&amp;site_id=12\" target=\"_blank\">2010</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2009&amp;site_id=12\" target=\"_blank\">2009</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2008&amp;site_id=12\" target=\"_blank\">2008</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2007&amp;site_id=12\" target=\"_blank\">2007</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2006&amp;site_id=12\" target=\"_blank\">2006</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2005&amp;site_id=12\" target=\"_blank\">2005</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2004&amp;site_id=12\" target=\"_blank\">2004</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2003&amp;site_id=12\" target=\"_blank\">2003</a> - 1 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2002&amp;site_id=12\" target=\"_blank\">2002</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2001&amp;site_id=12\" target=\"_blank\">2001</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2000&amp;site_id=12\" target=\"_blank\">2000</a> - 1 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1999&amp;site_id=12\" target=\"_blank\">1999</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1997&amp;site_id=12\" target=\"_blank\">1997</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1996&amp;site_id=12\" target=\"_blank\">1996</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1995&amp;site_id=12\" target=\"_blank\">1995</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1993&amp;site_id=12\" target=\"_blank\">1993</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1992&amp;site_id=12\" target=\"_blank\">1992</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1991&amp;site_id=12\" target=\"_blank\">1991</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1990&amp;site_id=12\" target=\"_blank\">1990</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1989&amp;site_id=12\" target=\"_blank\">1989</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1988&amp;site_id=12\" target=\"_blank\">1988</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1987&amp;site_id=12\" target=\"_blank\">1987</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1986&amp;site_id=12\" target=\"_blank\">1986</a> - 15 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1985&amp;site_id=12\" target=\"_blank\">1985</a> - 6 birds",
					new String( "2011,2010,2009,2008,2007,2006,2005,2004,2003,2002,2001,2000,1999,1997,1996,1995,1993,1992,1991,1990,1989,1988,1987,1986,1985" ), "bl" ),
		new Array( "MN", "44.9771", "-93.2656166",
					"<b>City Hall Minneapolis</b><br /> in Hennepin county, MN<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2007&amp;site_id=13\" target=\"_blank\">2007</a> - 1 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2006&amp;site_id=13\" target=\"_blank\">2006</a> - 1 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2005&amp;site_id=13\" target=\"_blank\">2005</a> - 2 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2004&amp;site_id=13\" target=\"_blank\">2004</a> - 2 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2000&amp;site_id=13\" target=\"_blank\">2000</a> - 1 birds",
					new String( "2007,2006,2005,2004,2000" ), "bl" ),
		new Array( "MN", "44.9716333", "-93.35005",
					"<b>Colonnade Golden Valley</b><br /> in Hennepin county, MN<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2011&amp;site_id=14\" target=\"_blank\">2011</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2010&amp;site_id=14\" target=\"_blank\">2010</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2009&amp;site_id=14\" target=\"_blank\">2009</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2008&amp;site_id=14\" target=\"_blank\">2008</a> - 1 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2007&amp;site_id=14\" target=\"_blank\">2007</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2006&amp;site_id=14\" target=\"_blank\">2006</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2005&amp;site_id=14\" target=\"_blank\">2005</a> - 2 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2004&amp;site_id=14\" target=\"_blank\">2004</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2003&amp;site_id=14\" target=\"_blank\">2003</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2002&amp;site_id=14\" target=\"_blank\">2002</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2001&amp;site_id=14\" target=\"_blank\">2001</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2000&amp;site_id=14\" target=\"_blank\">2000</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1999&amp;site_id=14\" target=\"_blank\">1999</a> - 1 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1998&amp;site_id=14\" target=\"_blank\">1998</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1996&amp;site_id=14\" target=\"_blank\">1996</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1995&amp;site_id=14\" target=\"_blank\">1995</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1994&amp;site_id=14\" target=\"_blank\">1994</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1993&amp;site_id=14\" target=\"_blank\">1993</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1992&amp;site_id=14\" target=\"_blank\">1992</a> - 4 birds",
					new String( "2011,2010,2009,2008,2007,2006,2005,2004,2003,2002,2001,2000,1999,1998,1996,1995,1994,1993,1992" ), "bl" ),
		new Array( "MN", "44.5", "-93.2",
					"<b>Control Data Bloomington</b><br /> in Hennepin county, MN<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1991&amp;site_id=15\" target=\"_blank\">1991</a> - 2 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1990&amp;site_id=15\" target=\"_blank\">1990</a> - 3 birds",
					new String( "1991,1990" ), "bl" ),
		new Array( "MN", "47.185629", "-91.369343",
					"<b>Corundum Point</b><br /> in Lake county, MN<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2010&amp;site_id=28\" target=\"_blank\">2010</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2009&amp;site_id=28\" target=\"_blank\">2009</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2008&amp;site_id=28\" target=\"_blank\">2008</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2007&amp;site_id=28\" target=\"_blank\">2007</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2006&amp;site_id=28\" target=\"_blank\">2006</a> - 2 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2003&amp;site_id=28\" target=\"_blank\">2003</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2002&amp;site_id=28\" target=\"_blank\">2002</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2001&amp;site_id=28\" target=\"_blank\">2001</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2000&amp;site_id=28\" target=\"_blank\">2000</a> - 2 birds",
					new String( "2010,2009,2008,2007,2006,2003,2002,2001,2000" ), "cl" ),
		new Array( "MN", "47.09945", "-91.54385",
					"<b>Crow Creek</b><br /> in Lake county, MN<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2010&amp;site_id=29\" target=\"_blank\">2010</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2009&amp;site_id=29\" target=\"_blank\">2009</a> - 1 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2008&amp;site_id=29\" target=\"_blank\">2008</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2007&amp;site_id=29\" target=\"_blank\">2007</a> - 2 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2006&amp;site_id=29\" target=\"_blank\">2006</a> - 2 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2000&amp;site_id=29\" target=\"_blank\">2000</a> - 1 birds",
					new String( "2010,2009,2008,2007,2006,2000" ), "cl" ),
		new Array( "MN", "44.16085", "-91.8202666",
					"<b>Faith Bluff</b><br /> in Winona county, MN<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2010&amp;site_id=59\" target=\"_blank\">2010</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2008&amp;site_id=59\" target=\"_blank\">2008</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2006&amp;site_id=59\" target=\"_blank\">2006</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2004&amp;site_id=59\" target=\"_blank\">2004</a> - 1 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2002&amp;site_id=59\" target=\"_blank\">2002</a> - 3 birds",
					new String( "2010,2008,2006,2004,2002" ), "cl" ),
		new Array( "MN", "44.8592333", "-93.3215",
					"<b>Financial Center Xerxes & I-94 Bloomington</b><br /> in Hennepin county, MN<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2009&amp;site_id=16\" target=\"_blank\">2009</a> - 5 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2006&amp;site_id=16\" target=\"_blank\">2006</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2005&amp;site_id=16\" target=\"_blank\">2005</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2004&amp;site_id=16\" target=\"_blank\">2004</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2003&amp;site_id=16\" target=\"_blank\">2003</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2001&amp;site_id=16\" target=\"_blank\">2001</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2000&amp;site_id=16\" target=\"_blank\">2000</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1999&amp;site_id=16\" target=\"_blank\">1999</a> - 2 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1998&amp;site_id=16\" target=\"_blank\">1998</a> - 1 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1997&amp;site_id=16\" target=\"_blank\">1997</a> - 3 birds",
					new String( "2009,2006,2005,2004,2003,2001,2000,1999,1998,1997" ), "bl" ),
		new Array( "MN", "47.3", "-90.4",
					"<b>Finn Church</b><br /> in Cook county, MN<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2010&amp;site_id=1\" target=\"_blank\">2010</a> - 1 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2005&amp;site_id=1\" target=\"_blank\">2005</a> - 2 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1999&amp;site_id=1\" target=\"_blank\">1999</a> - 2 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1998&amp;site_id=1\" target=\"_blank\">1998</a> - 2 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1997&amp;site_id=1\" target=\"_blank\">1997</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1995&amp;site_id=1\" target=\"_blank\">1995</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1994&amp;site_id=1\" target=\"_blank\">1994</a> - 4 birds",
					new String( "2010,2005,1999,1998,1997,1995,1994" ), "cl" ),
		new Array( "MN", "44.5", "-93.2",
					"<b>Ford Parkway Bridge Minneapolis</b><br /> in Hennepin county, MN<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2002&amp;site_id=17\" target=\"_blank\">2002</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1998&amp;site_id=17\" target=\"_blank\">1998</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1997&amp;site_id=17\" target=\"_blank\">1997</a> - 3 birds",
					new String( "2002,1998,1997" ), "br" ),
		new Array( "MN", "47.12092", "-91.3652777",
					"<b>Gold Hoist cliff, Split Rock Lighthouse State Park</b><br /> in Lake county, MN<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2010&amp;site_id=228\" target=\"_blank\">2010</a> - 2 birds",
					new String( "2010" ), "cl" ),
		new Array( "MN", "47.2011111", "-91.3655555",
					"<b>Gold Rock Point</b><br /> in Lake county, MN<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2011&amp;site_id=194\" target=\"_blank\">2011</a> - 2 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2009&amp;site_id=194\" target=\"_blank\">2009</a> - 3 birds",
					new String( "2011,2009" ), "cl" ),
		new Array( "MN", "45.2962222", "-93",
					"<b>Great River Energy Plant, Elk River, MN</b><br /> in Sherburne county, MN<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2011&amp;site_id=146\" target=\"_blank\">2011</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2010&amp;site_id=146\" target=\"_blank\">2010</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2009&amp;site_id=146\" target=\"_blank\">2009</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2008&amp;site_id=146\" target=\"_blank\">2008</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2007&amp;site_id=146\" target=\"_blank\">2007</a> - 3 birds",
					new String( "2011,2010,2009,2008,2007" ), "sm" ),
		new Array( "MN", "43.8736388", "-91.3223333",
					"<b>Great Spirit Bluff</b><br /> in Houston county, MN<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2011&amp;site_id=24\" target=\"_blank\">2011</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2010&amp;site_id=24\" target=\"_blank\">2010</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2009&amp;site_id=24\" target=\"_blank\">2009</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2008&amp;site_id=24\" target=\"_blank\">2008</a> - 1 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2006&amp;site_id=24\" target=\"_blank\">2006</a> - 3 birds",
					new String( "2011,2010,2009,2008,2006" ), "cl" ),
		new Array( "MN", "46.789196", "-92.095819",
					"<b>Greysolon Plaza Duluth</b><br /> in St. Louis county, MN<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2011&amp;site_id=47\" target=\"_blank\">2011</a> - 2 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2010&amp;site_id=47\" target=\"_blank\">2010</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2009&amp;site_id=47\" target=\"_blank\">2009</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2008&amp;site_id=47\" target=\"_blank\">2008</a> - 1 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2007&amp;site_id=47\" target=\"_blank\">2007</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2006&amp;site_id=47\" target=\"_blank\">2006</a> - 5 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2005&amp;site_id=47\" target=\"_blank\">2005</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2004&amp;site_id=47\" target=\"_blank\">2004</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2003&amp;site_id=47\" target=\"_blank\">2003</a> - 1 birds",
					new String( "2011,2010,2009,2008,2007,2006,2005,2004,2003" ), "bl" ),
		new Array( "MN", "44.9438888", "-93.0711111",
					"<b>Hastings railroad bridge, Hastings, MN</b><br /> in Dakota county, MN",
					new String( "" ), "br" ),
		new Array( "MN", "47.956824", "-89.604836",
					"<b>Hat Point</b><br /> in Cook county, MN",
					new String( "" ), "cl" ),
		new Array( "MN", "46.7357222", "-92.1518611",
					"<b>Hibbard Plant, MPL</b><br /> in St. Louis county, MN<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2011&amp;site_id=163\" target=\"_blank\">2011</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2009&amp;site_id=163\" target=\"_blank\">2009</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2008&amp;site_id=163\" target=\"_blank\">2008</a> - 1 birds",
					new String( "2011,2009,2008" ), "sm" ),
		new Array( "MN", "44.9266666", "-93.105",
					"<b>High Bridge Plant St. Paul</b><br /> in Ramsey county, MN<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2007&amp;site_id=37\" target=\"_blank\">2007</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2006&amp;site_id=37\" target=\"_blank\">2006</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2004&amp;site_id=37\" target=\"_blank\">2004</a> - 1 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2003&amp;site_id=37\" target=\"_blank\">2003</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2002&amp;site_id=37\" target=\"_blank\">2002</a> - 2 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2001&amp;site_id=37\" target=\"_blank\">2001</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2000&amp;site_id=37\" target=\"_blank\">2000</a> - 3 birds",
					new String( "2007,2006,2004,2003,2002,2001,2000" ), "sm" ),
		new Array( "MN", "44.7486333", "-92.8049",
					"<b>Highway 61 Bridge Hastings</b><br /> in Dakota county, MN<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2006&amp;site_id=8\" target=\"_blank\">2006</a> - 1 birds",
					new String( "2006" ), "br" ),
		new Array( "MN", "44.7459666", "-92.8476",
					"<b>Highway 61 Bridge/Hastings Cliff</b><br /> in Dakota county, MN",
					new String( "" ), "br" ),
		new Array( "MN", "44.7459666", "-92.8476",
					"<b>Highway 61 Bridge/Hastings Cliff</b><br /> in Washington county, MN<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2001&amp;site_id=55\" target=\"_blank\">2001</a> - 1 birds",
					new String( "2001" ), "cl" ),
		new Array( "MN", "47.2", "-93.2",
					"<b>Hill Annex Mine Calumet</b><br /> in Itasca county, MN<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1989&amp;site_id=26\" target=\"_blank\">1989</a> - 9 birds",
					new String( "1989" ), "cl" ),
		new Array( "MN", "44.0228888", "-91.6605555",
					"<b>Homer Bluff (P-4)</b><br /> in Winona county, MN<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2008&amp;site_id=148\" target=\"_blank\">2008</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2007&amp;site_id=148\" target=\"_blank\">2007</a> - 3 birds",
					new String( "2008,2007" ), "cl" ),
		new Array( "MN", "44.4418055", "-92.2716666",
					"<b>Horizon Milling, Lake City</b><br /> in Wabasha county, MN<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2011&amp;site_id=53\" target=\"_blank\">2011</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2010&amp;site_id=53\" target=\"_blank\">2010</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2009&amp;site_id=53\" target=\"_blank\">2009</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2008&amp;site_id=53\" target=\"_blank\">2008</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2007&amp;site_id=53\" target=\"_blank\">2007</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2006&amp;site_id=53\" target=\"_blank\">2006</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2005&amp;site_id=53\" target=\"_blank\">2005</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2004&amp;site_id=53\" target=\"_blank\">2004</a> - 8 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2003&amp;site_id=53\" target=\"_blank\">2003</a> - 7 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2002&amp;site_id=53\" target=\"_blank\">2002</a> - 7 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2001&amp;site_id=53\" target=\"_blank\">2001</a> - 4 birds",
					new String( "2011,2010,2009,2008,2007,2006,2005,2004,2003,2002,2001" ), "bl" ),
		new Array( "MN", "47.4", "-92.8",
					"<b>Hull Rust Mine Hibbing</b><br /> in St. Louis county, MN",
					new String( "" ), "cl" ),
		new Array( "MN", "44.8831666", "-93.0148333",
					"<b>I-494 Bridge South St. Paul</b><br /> in Washington county, MN<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2006&amp;site_id=56\" target=\"_blank\">2006</a> - 1 birds",
					new String( "2006" ), "br" ),
		new Array( "MN", "44.5", "-93",
					"<b>Inland Steel Newport</b><br /> in Washington county, MN",
					new String( "" ), "" ),
		new Array( "MN", "47.3125", "-91.48",
					"<b>Islet Bay</b><br /> in Lake county, MN<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2009&amp;site_id=176\" target=\"_blank\">2009</a> - 3 birds",
					new String( "2009" ), "cl" ),
		new Array( "MN", "47.3723333", "-91.1633166",
					"<b>Kennedy Creek</b><br /> in Lake county, MN<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2010&amp;site_id=30\" target=\"_blank\">2010</a> - 2 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2009&amp;site_id=30\" target=\"_blank\">2009</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2008&amp;site_id=30\" target=\"_blank\">2008</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2007&amp;site_id=30\" target=\"_blank\">2007</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2006&amp;site_id=30\" target=\"_blank\">2006</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2005&amp;site_id=30\" target=\"_blank\">2005</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1998&amp;site_id=30\" target=\"_blank\">1998</a> - 1 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1995&amp;site_id=30\" target=\"_blank\">1995</a> - 3 birds",
					new String( "2010,2009,2008,2007,2006,2005,1998,1995" ), "cl" ),
		new Array( "MN", "45.0299166", "-92.7775",
					"<b>King Plant Bayport</b><br /> in Washington county, MN<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2011&amp;site_id=58\" target=\"_blank\">2011</a> - 5 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2010&amp;site_id=58\" target=\"_blank\">2010</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2009&amp;site_id=58\" target=\"_blank\">2009</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2008&amp;site_id=58\" target=\"_blank\">2008</a> - 2 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2007&amp;site_id=58\" target=\"_blank\">2007</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2006&amp;site_id=58\" target=\"_blank\">2006</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2005&amp;site_id=58\" target=\"_blank\">2005</a> - 1 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2004&amp;site_id=58\" target=\"_blank\">2004</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2003&amp;site_id=58\" target=\"_blank\">2003</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2002&amp;site_id=58\" target=\"_blank\">2002</a> - 1 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2001&amp;site_id=58\" target=\"_blank\">2001</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2000&amp;site_id=58\" target=\"_blank\">2000</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1999&amp;site_id=58\" target=\"_blank\">1999</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1998&amp;site_id=58\" target=\"_blank\">1998</a> - 2 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1997&amp;site_id=58\" target=\"_blank\">1997</a> - 1 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1996&amp;site_id=58\" target=\"_blank\">1996</a> - 1 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1995&amp;site_id=58\" target=\"_blank\">1995</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1994&amp;site_id=58\" target=\"_blank\">1994</a> - 2 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1993&amp;site_id=58\" target=\"_blank\">1993</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1992&amp;site_id=58\" target=\"_blank\">1992</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1991&amp;site_id=58\" target=\"_blank\">1991</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1990&amp;site_id=58\" target=\"_blank\">1990</a> - 2 birds",
					new String( "2011,2010,2009,2008,2007,2006,2005,2004,2003,2002,2001,2000,1999,1998,1997,1996,1995,1994,1993,1992,1991,1990" ), "sm" ),
		new Array( "MN", "44.9125166", "-93.20215",
					"<b>Lock and Dam 1 Minneapolis</b><br /> in Hennepin county, MN<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2011&amp;site_id=18\" target=\"_blank\">2011</a> - 1 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2010&amp;site_id=18\" target=\"_blank\">2010</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2007&amp;site_id=18\" target=\"_blank\">2007</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2006&amp;site_id=18\" target=\"_blank\">2006</a> - 2 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2005&amp;site_id=18\" target=\"_blank\">2005</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2004&amp;site_id=18\" target=\"_blank\">2004</a> - 4 birds",
					new String( "2011,2010,2007,2006,2005,2004" ), "cl" ),
		new Array( "MN", "47.4358333", "-91.0697166",
					"<b>Manitou Cliff</b><br /> in Lake county, MN<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2011&amp;site_id=31\" target=\"_blank\">2011</a> - 2 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2010&amp;site_id=31\" target=\"_blank\">2010</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2009&amp;site_id=31\" target=\"_blank\">2009</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2006&amp;site_id=31\" target=\"_blank\">2006</a> - 2 birds",
					new String( "2011,2010,2009,2006" ), "cl" ),
		new Array( "MN", "44.0209", "-92.4665833",
					"<b>Mayo Clinic Rochester</b><br /> in Olmsted county, MN<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2010&amp;site_id=36\" target=\"_blank\">2010</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2009&amp;site_id=36\" target=\"_blank\">2009</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2008&amp;site_id=36\" target=\"_blank\">2008</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2007&amp;site_id=36\" target=\"_blank\">2007</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2006&amp;site_id=36\" target=\"_blank\">2006</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2005&amp;site_id=36\" target=\"_blank\">2005</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1997&amp;site_id=36\" target=\"_blank\">1997</a> - 1 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1996&amp;site_id=36\" target=\"_blank\">1996</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1995&amp;site_id=36\" target=\"_blank\">1995</a> - 2 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1994&amp;site_id=36\" target=\"_blank\">1994</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1993&amp;site_id=36\" target=\"_blank\">1993</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1992&amp;site_id=36\" target=\"_blank\">1992</a> - 2 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1988&amp;site_id=36\" target=\"_blank\">1988</a> - 11 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1987&amp;site_id=36\" target=\"_blank\">1987</a> - 21 birds",
					new String( "2010,2009,2008,2007,2006,2005,1997,1996,1995,1994,1993,1992,1988,1987" ), "bl" ),
		new Array( "MN", "44.88465", "-93.1726833",
					"<b>Mendota Bridge Minneapolis</b><br /> in Dakota county, MN<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2006&amp;site_id=10\" target=\"_blank\">2006</a> - 1 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2004&amp;site_id=10\" target=\"_blank\">2004</a> - 2 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2002&amp;site_id=10\" target=\"_blank\">2002</a> - 2 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2000&amp;site_id=10\" target=\"_blank\">2000</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1999&amp;site_id=10\" target=\"_blank\">1999</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1998&amp;site_id=10\" target=\"_blank\">1998</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1997&amp;site_id=10\" target=\"_blank\">1997</a> - 3 birds",
					new String( "2006,2004,2002,2000,1999,1998,1997" ), "br" ),
		new Array( "MN", "44.9759333", "-93.2731333",
					"<b>Midwest Plaza Minneapolis</b><br /> in Hennepin county, MN<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2008&amp;site_id=19\" target=\"_blank\">2008</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2004&amp;site_id=19\" target=\"_blank\">2004</a> - 5 birds",
					new String( "2008,2004" ), "bl" ),
		new Array( "MN", "44.97455", "-93.403",
					"<b>Minneapolis Interchange Building</b><br /> in Hennepin county, MN",
					new String( "" ), "bl" ),
		new Array( "MN", "47.2599444", "-93.6533333",
					"<b>Minnesota Power and Light</b><br /> in Itasca county, MN<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2010&amp;site_id=69\" target=\"_blank\">2010</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2006&amp;site_id=69\" target=\"_blank\">2006</a> - 4 birds",
					new String( "2010,2006" ), "sm" ),
		new Array( "MN", "44.5", "-93",
					"<b>Montgomery Ward St. Paul</b><br /> in Ramsey county, MN<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1995&amp;site_id=39\" target=\"_blank\">1995</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1994&amp;site_id=39\" target=\"_blank\">1994</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1993&amp;site_id=39\" target=\"_blank\">1993</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1992&amp;site_id=39\" target=\"_blank\">1992</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1991&amp;site_id=39\" target=\"_blank\">1991</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1990&amp;site_id=39\" target=\"_blank\">1990</a> - 2 birds",
					new String( "1995,1994,1993,1992,1991,1990" ), "bl" ),
		new Array( "MN", "45.3266666", "-93.84",
					"<b>Monticello Plant Monticello</b><br /> in Wright county, MN<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2011&amp;site_id=62\" target=\"_blank\">2011</a> - 1 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2010&amp;site_id=62\" target=\"_blank\">2010</a> - 2 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2009&amp;site_id=62\" target=\"_blank\">2009</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2008&amp;site_id=62\" target=\"_blank\">2008</a> - 2 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2006&amp;site_id=62\" target=\"_blank\">2006</a> - 1 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2005&amp;site_id=62\" target=\"_blank\">2005</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2004&amp;site_id=62\" target=\"_blank\">2004</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2003&amp;site_id=62\" target=\"_blank\">2003</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2002&amp;site_id=62\" target=\"_blank\">2002</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2001&amp;site_id=62\" target=\"_blank\">2001</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2000&amp;site_id=62\" target=\"_blank\">2000</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1999&amp;site_id=62\" target=\"_blank\">1999</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1998&amp;site_id=62\" target=\"_blank\">1998</a> - 2 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1997&amp;site_id=62\" target=\"_blank\">1997</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1996&amp;site_id=62\" target=\"_blank\">1996</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1995&amp;site_id=62\" target=\"_blank\">1995</a> - 3 birds",
					new String( "2011,2010,2009,2008,2006,2005,2004,2003,2002,2001,2000,1999,1998,1997,1996,1995" ), "sm" ),
		new Array( "MN", "47.3", "-90.4",
					"<b>Mt. Leaveaux</b><br /> in Cook/Hennepin county, MN",
					new String( "" ), "bl" ),
		new Array( "MN", "47.597887", "-90.768013",
					"<b>Mt. Leaveaux</b><br /> in Cook county, MN<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1986&amp;site_id=3\" target=\"_blank\">1986</a> - 17 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1985&amp;site_id=3\" target=\"_blank\">1985</a> - 7 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1984&amp;site_id=3\" target=\"_blank\">1984</a> - 5 birds",
					new String( "1986,1985,1984" ), "cl" ),
		new Array( "MN", "44.9487833", "-93.0937666",
					"<b>North Central Life St. Paul</b><br /> in Ramsey county, MN<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2011&amp;site_id=40\" target=\"_blank\">2011</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2010&amp;site_id=40\" target=\"_blank\">2010</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2009&amp;site_id=40\" target=\"_blank\">2009</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2007&amp;site_id=40\" target=\"_blank\">2007</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2004&amp;site_id=40\" target=\"_blank\">2004</a> - 1 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2001&amp;site_id=40\" target=\"_blank\">2001</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2000&amp;site_id=40\" target=\"_blank\">2000</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1999&amp;site_id=40\" target=\"_blank\">1999</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1998&amp;site_id=40\" target=\"_blank\">1998</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1997&amp;site_id=40\" target=\"_blank\">1997</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1996&amp;site_id=40\" target=\"_blank\">1996</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1995&amp;site_id=40\" target=\"_blank\">1995</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1994&amp;site_id=40\" target=\"_blank\">1994</a> - 2 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1993&amp;site_id=40\" target=\"_blank\">1993</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1992&amp;site_id=40\" target=\"_blank\">1992</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1991&amp;site_id=40\" target=\"_blank\">1991</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1990&amp;site_id=40\" target=\"_blank\">1990</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1989&amp;site_id=40\" target=\"_blank\">1989</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1988&amp;site_id=40\" target=\"_blank\">1988</a> - 4 birds",
					new String( "2011,2010,2009,2007,2004,2001,2000,1999,1998,1997,1996,1995,1994,1993,1992,1991,1990,1989,1988" ), "bl" ),
		new Array( "MN", "47.2788333", "-91.2677666",
					"<b>NorthShore Mining  Silver Bay</b><br /> in Lake county, MN<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2011&amp;site_id=32\" target=\"_blank\">2011</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2010&amp;site_id=32\" target=\"_blank\">2010</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2009&amp;site_id=32\" target=\"_blank\">2009</a> - 1 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2008&amp;site_id=32\" target=\"_blank\">2008</a> - 2 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2007&amp;site_id=32\" target=\"_blank\">2007</a> - 2 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2006&amp;site_id=32\" target=\"_blank\">2006</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2005&amp;site_id=32\" target=\"_blank\">2005</a> - 1 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2003&amp;site_id=32\" target=\"_blank\">2003</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2002&amp;site_id=32\" target=\"_blank\">2002</a> - 1 birds",
					new String( "2011,2010,2009,2008,2007,2006,2005,2003,2002" ), "bl" ),
		new Array( "MN", "44.9", "-93.59",
					"<b>Northstar Bridge, Hwy 169, Mankato, MN</b><br /> in Blue Earth county, MN<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2010&amp;site_id=140\" target=\"_blank\">2010</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2009&amp;site_id=140\" target=\"_blank\">2009</a> - 2 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2008&amp;site_id=140\" target=\"_blank\">2008</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2007&amp;site_id=140\" target=\"_blank\">2007</a> - 3 birds",
					new String( "2010,2009,2008,2007" ), "br" ),
		new Array( "MN", "47.3172833", "-91.2160833",
					"<b>Palisade Head</b><br /> in Lake county, MN<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2008&amp;site_id=33\" target=\"_blank\">2008</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2007&amp;site_id=33\" target=\"_blank\">2007</a> - 1 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2006&amp;site_id=33\" target=\"_blank\">2006</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2005&amp;site_id=33\" target=\"_blank\">2005</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2003&amp;site_id=33\" target=\"_blank\">2003</a> - 2 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2002&amp;site_id=33\" target=\"_blank\">2002</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2001&amp;site_id=33\" target=\"_blank\">2001</a> - 2 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2000&amp;site_id=33\" target=\"_blank\">2000</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1998&amp;site_id=33\" target=\"_blank\">1998</a> - 2 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1997&amp;site_id=33\" target=\"_blank\">1997</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1996&amp;site_id=33\" target=\"_blank\">1996</a> - 1 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1995&amp;site_id=33\" target=\"_blank\">1995</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1994&amp;site_id=33\" target=\"_blank\">1994</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1993&amp;site_id=33\" target=\"_blank\">1993</a> - 1 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1992&amp;site_id=33\" target=\"_blank\">1992</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1991&amp;site_id=33\" target=\"_blank\">1991</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1990&amp;site_id=33\" target=\"_blank\">1990</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1989&amp;site_id=33\" target=\"_blank\">1989</a> - 1 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1988&amp;site_id=33\" target=\"_blank\">1988</a> - 2 birds",
					new String( "2008,2007,2006,2005,2003,2002,2001,2000,1998,1997,1996,1995,1994,1993,1992,1991,1990,1989,1988" ), "cl" ),
		new Array( "MN", "45.61815", "-94.2007666",
					"<b>Paper Mill Sartell</b><br /> in Stearns county, MN<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2007&amp;site_id=50\" target=\"_blank\">2007</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2006&amp;site_id=50\" target=\"_blank\">2006</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2005&amp;site_id=50\" target=\"_blank\">2005</a> - 3 birds",
					new String( "2007,2006,2005" ), "bl" ),
		new Array( "MN", "47.25835", "-91.2899333",
					"<b>Pink Cove Beaver Bay</b><br /> in Lake county, MN<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2009&amp;site_id=34\" target=\"_blank\">2009</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2008&amp;site_id=34\" target=\"_blank\">2008</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2006&amp;site_id=34\" target=\"_blank\">2006</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1998&amp;site_id=34\" target=\"_blank\">1998</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1997&amp;site_id=34\" target=\"_blank\">1997</a> - 3 birds",
					new String( "2009,2008,2006,1998,1997" ), "cl" ),
		new Array( "MN", "44.6216666", "-92.625",
					"<b>Prairie Island Plant</b><br /> in Goodhue county, MN<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2011&amp;site_id=11\" target=\"_blank\">2011</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2010&amp;site_id=11\" target=\"_blank\">2010</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2008&amp;site_id=11\" target=\"_blank\">2008</a> - 2 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2007&amp;site_id=11\" target=\"_blank\">2007</a> - 2 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2006&amp;site_id=11\" target=\"_blank\">2006</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2005&amp;site_id=11\" target=\"_blank\">2005</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2004&amp;site_id=11\" target=\"_blank\">2004</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2000&amp;site_id=11\" target=\"_blank\">2000</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1999&amp;site_id=11\" target=\"_blank\">1999</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1998&amp;site_id=11\" target=\"_blank\">1998</a> - 2 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1997&amp;site_id=11\" target=\"_blank\">1997</a> - 4 birds",
					new String( "2011,2010,2008,2007,2006,2005,2004,2000,1999,1998,1997" ), "bl" ),
		new Array( "MN", "44 03065", "-92",
					"<b>Precipitace Bluff</b><br /> in Winona county, MN<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2011&amp;site_id=192\" target=\"_blank\">2011</a> - 2 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2010&amp;site_id=192\" target=\"_blank\">2010</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2009&amp;site_id=192\" target=\"_blank\">2009</a> - 2 birds",
					new String( "2011,2010,2009" ), "cl" ),
		new Array( "MN", "43.95715", "-91.4007833",
					"<b>Queens Bluff</b><br /> in Winona county, MN<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2011&amp;site_id=61\" target=\"_blank\">2011</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2010&amp;site_id=61\" target=\"_blank\">2010</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2009&amp;site_id=61\" target=\"_blank\">2009</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2008&amp;site_id=61\" target=\"_blank\">2008</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2006&amp;site_id=61\" target=\"_blank\">2006</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2003&amp;site_id=61\" target=\"_blank\">2003</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2002&amp;site_id=61\" target=\"_blank\">2002</a> - 3 birds",
					new String( "2011,2010,2009,2008,2006,2003,2002" ), "cl" ),
		new Array( "MN", "44.32281", "-92.4152222",
					"<b>Rattlesnake Bluff, Frontenac State Park</b><br /> in Goodhue county, MN<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2010&amp;site_id=229\" target=\"_blank\">2010</a> - 3 birds",
					new String( "2010" ), "cl" ),
		new Array( "MN", "44.5757777", "-92.5455277",
					"<b>Red Wing Grain Stack House</b><br /> in Goodhue county, MN<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2010&amp;site_id=68\" target=\"_blank\">2010</a> - 2 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2009&amp;site_id=68\" target=\"_blank\">2009</a> - 2 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2008&amp;site_id=68\" target=\"_blank\">2008</a> - 1 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2007&amp;site_id=68\" target=\"_blank\">2007</a> - 2 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2006&amp;site_id=68\" target=\"_blank\">2006</a> - 1 birds",
					new String( "2010,2009,2008,2007,2006" ), "sm" ),
		new Array( "MN", "45.0", "-93.2",
					"<b>Riverside Plant Minneapolis</b><br /> in Hennepin county, MN<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2003&amp;site_id=21\" target=\"_blank\">2003</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2002&amp;site_id=21\" target=\"_blank\">2002</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2001&amp;site_id=21\" target=\"_blank\">2001</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2000&amp;site_id=21\" target=\"_blank\">2000</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1999&amp;site_id=21\" target=\"_blank\">1999</a> - 1 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1998&amp;site_id=21\" target=\"_blank\">1998</a> - 2 birds",
					new String( "2003,2002,2001,2000,1999,1998" ), "sm" ),
		new Array( "MN", "44.9693166", "-93.24865",
					"<b>Riverside Plaza/I-94 Mississippi River Bridge Minneapolis</b><br /> in Hennepin county, MN<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2009&amp;site_id=22\" target=\"_blank\">2009</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2008&amp;site_id=22\" target=\"_blank\">2008</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2007&amp;site_id=22\" target=\"_blank\">2007</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2006&amp;site_id=22\" target=\"_blank\">2006</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2005&amp;site_id=22\" target=\"_blank\">2005</a> - 2 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2004&amp;site_id=22\" target=\"_blank\">2004</a> - 4 birds",
					new String( "2009,2008,2007,2006,2005,2004" ), "bl" ),
		new Array( "MN", "44.9693166", "-93.24865",
					"<b>Riverside Plaza/I-94 Mississippi River Bridge Minneapolis</b><br /> in Hennepin county, MN<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2003&amp;site_id=23\" target=\"_blank\">2003</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2002&amp;site_id=23\" target=\"_blank\">2002</a> - 1 birds",
					new String( "2003,2002" ), "br" ),
		new Array( "MN", "44.976214", "93.2447",
					"<b>Riverview Tower</b><br /> in Hennepin county, MN<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2011&amp;site_id=241\" target=\"_blank\">2011</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2010&amp;site_id=241\" target=\"_blank\">2010</a> - 3 birds",
					new String( "2011,2010" ), "bl" ),
		new Array( "MN", "47.3", "-92.3",
					"<b>Rouchleau Pit Virginia</b><br /> in St. Louis county, MN<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1993&amp;site_id=49\" target=\"_blank\">1993</a> - 7 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1992&amp;site_id=49\" target=\"_blank\">1992</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1991&amp;site_id=49\" target=\"_blank\">1991</a> - 2 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1989&amp;site_id=49\" target=\"_blank\">1989</a> - 17 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1988&amp;site_id=49\" target=\"_blank\">1988</a> - 13 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1987&amp;site_id=49\" target=\"_blank\">1987</a> - 5 birds",
					new String( "1993,1992,1991,1989,1988,1987" ), "cl" ),
		new Array( "MN", "44.5", "-93.2",
					"<b>Seven Forty River Drive St. Paul</b><br /> in Ramsey county, MN",
					new String( "" ), "bl" ),
		new Array( "MN", "43.66675", "-91.2779166",
					"<b>Shellhorn Bluff, Brownsville</b><br /> in Houston county, MN<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2008&amp;site_id=165\" target=\"_blank\">2008</a> - 1 birds",
					new String( "2008" ), "cl" ),
		new Array( "MN", "45.375", "-93.8916666",
					"<b>Sherco Plant Becker</b><br /> in Sherburne county, MN<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2011&amp;site_id=44\" target=\"_blank\">2011</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2010&amp;site_id=44\" target=\"_blank\">2010</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2009&amp;site_id=44\" target=\"_blank\">2009</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2008&amp;site_id=44\" target=\"_blank\">2008</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2006&amp;site_id=44\" target=\"_blank\">2006</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2005&amp;site_id=44\" target=\"_blank\">2005</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2004&amp;site_id=44\" target=\"_blank\">2004</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2003&amp;site_id=44\" target=\"_blank\">2003</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2001&amp;site_id=44\" target=\"_blank\">2001</a> - 2 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1999&amp;site_id=44\" target=\"_blank\">1999</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1998&amp;site_id=44\" target=\"_blank\">1998</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1997&amp;site_id=44\" target=\"_blank\">1997</a> - 2 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1996&amp;site_id=44\" target=\"_blank\">1996</a> - 2 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1995&amp;site_id=44\" target=\"_blank\">1995</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1994&amp;site_id=44\" target=\"_blank\">1994</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1993&amp;site_id=44\" target=\"_blank\">1993</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1992&amp;site_id=44\" target=\"_blank\">1992</a> - 2 birds",
					new String( "2011,2010,2009,2008,2006,2005,2004,2003,2001,1999,1998,1997,1996,1995,1994,1993,1992" ), "sm" ),
		new Array( "MN", "47.202407", "-91.1884444",
					"<b>Shovel Point Cliff, Tettagouche State Park</b><br /> in Lake county, MN",
					new String( "" ), "cl" ),
		new Array( "MN", "44.97945", "-93.1686333",
					"<b>Space Tower State Fairgrounds St. Paul</b><br /> in Ramsey county, MN",
					new String( "" ), "bl" ),
		new Array( "MN", "45.6", "-94.1",
					"<b>State Correctional Facility/University Bridge St. Cloud</b><br /> in Stearns county, MN<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2011&amp;site_id=51\" target=\"_blank\">2011</a> - 2 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2010&amp;site_id=51\" target=\"_blank\">2010</a> - 4 birds",
					new String( "2011,2010" ), "bl" ),
		new Array( "MN", "45.6", "-94.1",
					"<b>State Correctional Facility/University Bridge St. Cloud</b><br /> in Stearns county, MN<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2000&amp;site_id=52\" target=\"_blank\">2000</a> - 1 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1998&amp;site_id=52\" target=\"_blank\">1998</a> - 1 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1994&amp;site_id=52\" target=\"_blank\">1994</a> - 2 birds",
					new String( "2000,1998,1994" ), "br" ),
		new Array( "MN", "47.0412777", "-91.6391666",
					"<b>Superior Shores/Rocky Point</b><br /> in Lake county, MN<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2011&amp;site_id=70\" target=\"_blank\">2011</a> - 2 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2010&amp;site_id=70\" target=\"_blank\">2010</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2006&amp;site_id=70\" target=\"_blank\">2006</a> - 2 birds",
					new String( "2011,2010,2006" ), "cl" ),
		new Array( "MN", "44.1", "-91.5",
					"<b>Weaver Dunes</b><br /> in Wabasha county, MN<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1986&amp;site_id=54\" target=\"_blank\">1986</a> - 2 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1985&amp;site_id=54\" target=\"_blank\">1985</a> - 12 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1984&amp;site_id=54\" target=\"_blank\">1984</a> - 11 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1983&amp;site_id=54\" target=\"_blank\">1983</a> - 10 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1982&amp;site_id=54\" target=\"_blank\">1982</a> - 5 birds",
					new String( "1986,1985,1984,1983,1982" ), "bl" ),
		new Array( "MN", "45.0038888", "-93.3972222",
					"<b>Wells Fargo Bank, Bloomington, MN</b><br /> in Hennepin county, MN<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2011&amp;site_id=76\" target=\"_blank\">2011</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2010&amp;site_id=76\" target=\"_blank\">2010</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2008&amp;site_id=76\" target=\"_blank\">2008</a> - 5 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2007&amp;site_id=76\" target=\"_blank\">2007</a> - 3 birds",
					new String( "2011,2010,2008,2007" ), "bl" ),
		new Array( "MN", "47.373085", "-91.228001",
					"<b>Wolf Ridge ELC Finland</b><br /> in Lake county, MN<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1990&amp;site_id=35\" target=\"_blank\">1990</a> - 2 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1989&amp;site_id=35\" target=\"_blank\">1989</a> - 1 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1988&amp;site_id=35\" target=\"_blank\">1988</a> - 10 birds",
					new String( "1990,1989,1988" ), "cl" ),
		new Array( "MO", "38.333", "-90.78887",
					"<b>AmerenUE, Labadie Power Station, St. Louis</b><br /> in St. Louis county, MO<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2009&amp;site_id=133\" target=\"_blank\">2009</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2006&amp;site_id=133\" target=\"_blank\">2006</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2005&amp;site_id=133\" target=\"_blank\">2005</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2004&amp;site_id=133\" target=\"_blank\">2004</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2003&amp;site_id=133\" target=\"_blank\">2003</a> - 5 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2002&amp;site_id=133\" target=\"_blank\">2002</a> - 3 birds",
					new String( "2009,2006,2005,2004,2003,2002" ), "sm" ),
		new Array( "MO", "38.651802", "-90.339668",
					"<b>Fifth Third Bank, 8000 Maryland Avenue, Clayton</b><br /> in Saint Louis county, MO<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2011&amp;site_id=265\" target=\"_blank\">2011</a> - 1 birds",
					new String( "2011" ), "bl" ),
		new Array( "MO", "38.4", "-90.2",
					"<b>Interco Building, Clayton</b><br /> in St. Louis county, MO<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2010&amp;site_id=134\" target=\"_blank\">2010</a> - 2 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2009&amp;site_id=134\" target=\"_blank\">2009</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2008&amp;site_id=134\" target=\"_blank\">2008</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2006&amp;site_id=134\" target=\"_blank\">2006</a> - 1 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2005&amp;site_id=134\" target=\"_blank\">2005</a> - 1 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2004&amp;site_id=134\" target=\"_blank\">2004</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2003&amp;site_id=134\" target=\"_blank\">2003</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2002&amp;site_id=134\" target=\"_blank\">2002</a> - 2 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2001&amp;site_id=134\" target=\"_blank\">2001</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1999&amp;site_id=134\" target=\"_blank\">1999</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1997&amp;site_id=134\" target=\"_blank\">1997</a> - 4 birds",
					new String( "2010,2009,2008,2006,2005,2004,2003,2002,2001,1999,1997" ), "bl" ),
		new Array( "MO", "38.92639", "-90.39028",
					"<b>Portage de Sioux Power Plant, St Charles County</b><br /> in St Charles county, MO<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2011&amp;site_id=267\" target=\"_blank\">2011</a> - 5 birds",
					new String( "2011" ), "sm" ),
		new Array( "MO", "38.4", "-90.01667",
					"<b>Southwestern Bell/AT&T, St. Louis</b><br /> in St. Louis county, MO<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2011&amp;site_id=215\" target=\"_blank\">2011</a> - 6 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2010&amp;site_id=215\" target=\"_blank\">2010</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2009&amp;site_id=215\" target=\"_blank\">2009</a> - 5 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2008&amp;site_id=215\" target=\"_blank\">2008</a> - 4 birds",
					new String( "2011,2010,2009,2008" ), "bl" ),
		new Array( "MO", "38.5", "-90.16667",
					"<b>Washington University Medical School</b><br /> in St. Louis City county, MO<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2009&amp;site_id=180\" target=\"_blank\">2009</a> - 2 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2008&amp;site_id=180\" target=\"_blank\">2008</a> - 3 birds",
					new String( "2009,2008" ), "bl" ),
		new Array( "ND", "46.87425", "-96.7873",
					"<b>Community First Bank, Fargo</b><br /> in Cass county, ND<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2011&amp;site_id=66\" target=\"_blank\">2011</a> - 1 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2010&amp;site_id=66\" target=\"_blank\">2010</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2009&amp;site_id=66\" target=\"_blank\">2009</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2008&amp;site_id=66\" target=\"_blank\">2008</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2007&amp;site_id=66\" target=\"_blank\">2007</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2006&amp;site_id=66\" target=\"_blank\">2006</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2005&amp;site_id=66\" target=\"_blank\">2005</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2004&amp;site_id=66\" target=\"_blank\">2004</a> - 2 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2003&amp;site_id=66\" target=\"_blank\">2003</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2001&amp;site_id=66\" target=\"_blank\">2001</a> - 3 birds",
					new String( "2011,2010,2009,2008,2007,2006,2005,2004,2003,2001" ), "bl" ),
		new Array( "ND", "138.75", "-101.0175",
					"<b>Smiley Tower</b><br /> in Grand Forks county, ND<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2009&amp;site_id=178\" target=\"_blank\">2009</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2008&amp;site_id=178\" target=\"_blank\">2008</a> - 1 birds",
					new String( "2009,2008" ), "bl" ),
		new Array( "ND", "47.55075", "-97.0671388",
					"<b>UND Water Tower, Grand Forks Campus</b><br /> in Grand Forks county, ND<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2011&amp;site_id=227\" target=\"_blank\">2011</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2010&amp;site_id=227\" target=\"_blank\">2010</a> - 3 birds",
					new String( "2011,2010" ), "bl" ),
		new Array( "NE", "40.808056", "-96.69944",
					"<b>State Capitol, Lincoln</b><br /> in Lancaster county, NE<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2011&amp;site_id=79\" target=\"_blank\">2011</a> - 1 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2010&amp;site_id=79\" target=\"_blank\">2010</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2009&amp;site_id=79\" target=\"_blank\">2009</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2007&amp;site_id=79\" target=\"_blank\">2007</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2006&amp;site_id=79\" target=\"_blank\">2006</a> - 3 birds",
					new String( "2011,2010,2009,2007,2006" ), "bl" ),
		new Array( "NE", "41.258", "-95.439",
					"<b>Woodman Tower, Omaha</b><br /> in Douglas county, NE<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2011&amp;site_id=78\" target=\"_blank\">2011</a> - 5 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2010&amp;site_id=78\" target=\"_blank\">2010</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2009&amp;site_id=78\" target=\"_blank\">2009</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2007&amp;site_id=78\" target=\"_blank\">2007</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2006&amp;site_id=78\" target=\"_blank\">2006</a> - 5 birds",
					new String( "2011,2010,2009,2007,2006" ), "bl" ),
		new Array( "OH", "39.4773888", "-84.381",
					"<b>AK Steel, Middletown</b><br /> in Butler county, OH",
					new String( "" ), "bl" ),
		new Array( "OH", "40.7981944", "-81.3751111",
					"<b>Bank One (Chase Bank), Canton</b><br /> in Stark county, OH<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2011&amp;site_id=92\" target=\"_blank\">2011</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2010&amp;site_id=92\" target=\"_blank\">2010</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2009&amp;site_id=92\" target=\"_blank\">2009</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2008&amp;site_id=92\" target=\"_blank\">2008</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2007&amp;site_id=92\" target=\"_blank\">2007</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2006&amp;site_id=92\" target=\"_blank\">2006</a> - 4 birds",
					new String( "2011,2010,2009,2008,2007,2006" ), "bl" ),
		new Array( "OH", "41.69112", "-83.43755",
					"<b>Bay Shore Power Plant, Oregon</b><br /> in Lucas county, OH<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2011&amp;site_id=174\" target=\"_blank\">2011</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2010&amp;site_id=174\" target=\"_blank\">2010</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2009&amp;site_id=174\" target=\"_blank\">2009</a> - 1 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2008&amp;site_id=174\" target=\"_blank\">2008</a> - 2 birds",
					new String( "2011,2010,2009,2008" ), "bl" ),
		new Array( "OH", "41.5039166", "-81.6843611",
					"<b>Bohn Building, Cleveland</b><br /> in Cuyahoga county, OH<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2011&amp;site_id=91\" target=\"_blank\">2011</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2010&amp;site_id=91\" target=\"_blank\">2010</a> - 1 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2007&amp;site_id=91\" target=\"_blank\">2007</a> - 2 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2006&amp;site_id=91\" target=\"_blank\">2006</a> - 3 birds",
					new String( "2011,2010,2007,2006" ), "bl" ),
		new Array( "OH", "40.2422777", "-80.6561666",
					"<b>Cardinal Power Plant (Brilliant)</b><br /> in Jefferson county, OH<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2011&amp;site_id=234\" target=\"_blank\">2011</a> - 1 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2010&amp;site_id=234\" target=\"_blank\">2010</a> - 1 birds",
					new String( "2011,2010" ), "sm" ),
		new Array( "OH", "39.90997", "-83.4753",
					"<b>Chase Bank, Lima (also known as Bank One Lima)</b><br /> in Allen county, OH<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2010&amp;site_id=235\" target=\"_blank\">2010</a> - 4 birds",
					new String( "2010" ), "bl" ),
		new Array( "OH", "41.5029444", "-81.6178611",
					"<b>Cleveland Clinic, Cleveland</b><br /> in Cuyahoga county, OH<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2011&amp;site_id=87\" target=\"_blank\">2011</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2010&amp;site_id=87\" target=\"_blank\">2010</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2009&amp;site_id=87\" target=\"_blank\">2009</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2007&amp;site_id=87\" target=\"_blank\">2007</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2006&amp;site_id=87\" target=\"_blank\">2006</a> - 4 birds",
					new String( "2011,2010,2009,2007,2006" ), "bl" ),
		new Array( "OH", "41 65032", "-83",
					"<b>Commodore Perry Motor Inn, Toledo</b><br /> in Lucas county, OH<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2009&amp;site_id=85\" target=\"_blank\">2009</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2008&amp;site_id=85\" target=\"_blank\">2008</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2007&amp;site_id=85\" target=\"_blank\">2007</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2006&amp;site_id=85\" target=\"_blank\">2006</a> - 1 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2004&amp;site_id=85\" target=\"_blank\">2004</a> - 1 birds",
					new String( "2009,2008,2007,2006,2004" ), "bl" ),
		new Array( "OH", "41.6709444", "-81.4451944",
					"<b>Eastlake Power Plant, Eastlake</b><br /> in Lake county, OH<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2011&amp;site_id=248\" target=\"_blank\">2011</a> - 5 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2010&amp;site_id=248\" target=\"_blank\">2010</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2009&amp;site_id=248\" target=\"_blank\">2009</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2008&amp;site_id=248\" target=\"_blank\">2008</a> - 5 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2007&amp;site_id=248\" target=\"_blank\">2007</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2006&amp;site_id=248\" target=\"_blank\">2006</a> - 4 birds",
					new String( "2011,2010,2009,2008,2007,2006" ), "sm" ),
		new Array( "OH", "41.4713888", "-81.8247222",
					"<b>Hilliard Road Bridge, Lakewood</b><br /> in Cuyahoga county, OH<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2008&amp;site_id=135\" target=\"_blank\">2008</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2006&amp;site_id=135\" target=\"_blank\">2006</a> - 2 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2005&amp;site_id=135\" target=\"_blank\">2005</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2004&amp;site_id=135\" target=\"_blank\">2004</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2003&amp;site_id=135\" target=\"_blank\">2003</a> - 2 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2002&amp;site_id=135\" target=\"_blank\">2002</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2001&amp;site_id=135\" target=\"_blank\">2001</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2000&amp;site_id=135\" target=\"_blank\">2000</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1999&amp;site_id=135\" target=\"_blank\">1999</a> - 3 birds",
					new String( "2008,2006,2005,2004,2003,2002,2001,2000,1999" ), "br" ),
		new Array( "OH", "41.4088888", "-81.6319444",
					"<b>I-480 Valley View Bridge</b><br /> in Cuyahoga county, OH<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2008&amp;site_id=170\" target=\"_blank\">2008</a> - 4 birds",
					new String( "2008" ), "br" ),
		new Array( "OH", "41.2554722", "-81.55675",
					"<b>I-80 Turnpike Bridge, Boston</b><br /> in Summit county, OH<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2009&amp;site_id=221\" target=\"_blank\">2009</a> - 2 birds",
					new String( "2009" ), "br" ),
		new Array( "OH", "41.3", "-81.4",
					"<b>I-90 Bridge, Cuyahoga River, Cleveland</b><br /> in Cuyahoga county, OH<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2010&amp;site_id=90\" target=\"_blank\">2010</a> - 1 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2009&amp;site_id=90\" target=\"_blank\">2009</a> - 2 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2008&amp;site_id=90\" target=\"_blank\">2008</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2007&amp;site_id=90\" target=\"_blank\">2007</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2006&amp;site_id=90\" target=\"_blank\">2006</a> - 3 birds",
					new String( "2010,2009,2008,2007,2006" ), "br" ),
		new Array( "OH", "38.5318055", "-82.6890277",
					"<b>Ironton/Russell Bridge, Ironton</b><br /> in Lawrence county, OH<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2011&amp;site_id=84\" target=\"_blank\">2011</a> - 2 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2010&amp;site_id=84\" target=\"_blank\">2010</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2009&amp;site_id=84\" target=\"_blank\">2009</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2008&amp;site_id=84\" target=\"_blank\">2008</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2007&amp;site_id=84\" target=\"_blank\">2007</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2006&amp;site_id=84\" target=\"_blank\">2006</a> - 3 birds",
					new String( "2011,2010,2009,2008,2007,2006" ), "br" ),
		new Array( "OH", "38.6369444", "-83.6915833",
					"<b>J.M. Stuart Power Plant, Aberdeen</b><br /> in Brown county, OH<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2011&amp;site_id=81\" target=\"_blank\">2011</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2010&amp;site_id=81\" target=\"_blank\">2010</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2009&amp;site_id=81\" target=\"_blank\">2009</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2007&amp;site_id=81\" target=\"_blank\">2007</a> - 1 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2006&amp;site_id=81\" target=\"_blank\">2006</a> - 4 birds",
					new String( "2011,2010,2009,2007,2006" ), "sm" ),
		new Array( "OH", "38.6864166", "-83.4786666",
					"<b>Killen Duke Power Station, Wrightsville</b><br /> in Adams county, OH<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2011&amp;site_id=272\" target=\"_blank\">2011</a> - 3 birds",
					new String( "2011" ), "bl" ),
		new Array( "OH", "41.53675", "-81.6410555",
					"<b>Lakeshore Power Plant</b><br /> in CUYAHOGA county, OH<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2011&amp;site_id=232\" target=\"_blank\">2011</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2010&amp;site_id=232\" target=\"_blank\">2010</a> - 2 birds",
					new String( "2011,2010" ), "sm" ),
		new Array( "OH", "41.0811388", "-81.5193888",
					"<b>Landmark Building, Akron</b><br /> in Summit county, OH<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2011&amp;site_id=88\" target=\"_blank\">2011</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2010&amp;site_id=88\" target=\"_blank\">2010</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2009&amp;site_id=88\" target=\"_blank\">2009</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2008&amp;site_id=88\" target=\"_blank\">2008</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2007&amp;site_id=88\" target=\"_blank\">2007</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2006&amp;site_id=88\" target=\"_blank\">2006</a> - 4 birds",
					new String( "2011,2010,2009,2008,2007,2006" ), "bl" ),
		new Array( "OH", "39.7604166", "-84.1944722",
					"<b>Liberty Bank, Dayton</b><br /> in Montgomery county, OH<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2010&amp;site_id=249\" target=\"_blank\">2010</a> - 2 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2009&amp;site_id=249\" target=\"_blank\">2009</a> - 3 birds",
					new String( "2010,2009" ), "bl" ),
		new Array( "OH", "41.4721388", "-81.6708333",
					"<b>LTV Steel, Cleveland (Mittal Steel, Arcelor)</b><br /> in Cuyahoga county, OH<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2011&amp;site_id=89\" target=\"_blank\">2011</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2010&amp;site_id=89\" target=\"_blank\">2010</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2009&amp;site_id=89\" target=\"_blank\">2009</a> - 5 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2008&amp;site_id=89\" target=\"_blank\">2008</a> - 2 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2007&amp;site_id=89\" target=\"_blank\">2007</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2006&amp;site_id=89\" target=\"_blank\">2006</a> - 3 birds",
					new String( "2011,2010,2009,2008,2007,2006" ), "bl" ),
		new Array( "OH", "39.1125555", "-84.8017222",
					"<b>Miami Fort Station, Cleves</b><br /> in Hamilton county, OH<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2007&amp;site_id=80\" target=\"_blank\">2007</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2006&amp;site_id=80\" target=\"_blank\">2006</a> - 5 birds",
					new String( "2007,2006" ), "sm" ),
		new Array( "OH", "39.0993888", "-84.5129444",
					"<b>PNC Bank, Cincinnati</b><br /> in Hamilton county, OH<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2011&amp;site_id=83\" target=\"_blank\">2011</a> - 2 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2010&amp;site_id=83\" target=\"_blank\">2010</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2009&amp;site_id=83\" target=\"_blank\">2009</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2008&amp;site_id=83\" target=\"_blank\">2008</a> - 1 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2007&amp;site_id=83\" target=\"_blank\">2007</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2006&amp;site_id=83\" target=\"_blank\">2006</a> - 3 birds",
					new String( "2011,2010,2009,2008,2007,2006" ), "bl" ),
		new Array( "OH", "40.1586111", "-83.01",
					"<b>Rhodes State Office Tower, Columbus</b><br /> in Franklin county, OH<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2010&amp;site_id=121\" target=\"_blank\">2010</a> - 2 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2009&amp;site_id=121\" target=\"_blank\">2009</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2006&amp;site_id=121\" target=\"_blank\">2006</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2005&amp;site_id=121\" target=\"_blank\">2005</a> - 2 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2001&amp;site_id=121\" target=\"_blank\">2001</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2000&amp;site_id=121\" target=\"_blank\">2000</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1998&amp;site_id=121\" target=\"_blank\">1998</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1997&amp;site_id=121\" target=\"_blank\">1997</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1996&amp;site_id=121\" target=\"_blank\">1996</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1995&amp;site_id=121\" target=\"_blank\">1995</a> - 5 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1994&amp;site_id=121\" target=\"_blank\">1994</a> - 3 birds",
					new String( "2010,2009,2006,2005,2001,2000,1998,1997,1996,1995,1994" ), "bl" ),
		new Array( "OH", "41.4411111", "-82.8742777",
					"<b>Sandusky Bay Coal Dock Station</b><br /> in Erie county, OH<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2010&amp;site_id=236\" target=\"_blank\">2010</a> - 1 birds",
					new String( "2010" ), "bl" ),
		new Array( "OH", "41 5", "-80",
					"<b>Stambaugh Building, Youngstown</b><br /> in Mahoning county, OH<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2009&amp;site_id=93\" target=\"_blank\">2009</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2008&amp;site_id=93\" target=\"_blank\">2008</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2007&amp;site_id=93\" target=\"_blank\">2007</a> - 2 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2006&amp;site_id=93\" target=\"_blank\">2006</a> - 1 birds",
					new String( "2009,2008,2007,2006" ), "bl" ),
		new Array( "OH", "41.4984166", "-81.6937777",
					"<b>Terminal Tower, Cleveland</b><br /> in Cuyahoga county, OH<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2011&amp;site_id=86\" target=\"_blank\">2011</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2010&amp;site_id=86\" target=\"_blank\">2010</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2009&amp;site_id=86\" target=\"_blank\">2009</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2008&amp;site_id=86\" target=\"_blank\">2008</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2007&amp;site_id=86\" target=\"_blank\">2007</a> - 2 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2006&amp;site_id=86\" target=\"_blank\">2006</a> - 4 birds",
					new String( "2011,2010,2009,2008,2007,2006" ), "bl" ),
		new Array( "OH", "41.4638888", "-81.5338888",
					"<b>Tower East, Shaker Heights</b><br /> in Cuyahoga county, OH",
					new String( "" ), "bl" ),
		new Array( "OH", "41.66225", "-83.61446",
					"<b>University of Toledo</b><br /> in Lucas county, OH<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2011&amp;site_id=171\" target=\"_blank\">2011</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2010&amp;site_id=171\" target=\"_blank\">2010</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2009&amp;site_id=171\" target=\"_blank\">2009</a> - 4 birds",
					new String( "2011,2010,2009" ), "bl" ),
		new Array( "OH", "41.2313888", "-80.8010277",
					"<b>Warren Water Tower</b><br /> in Trumbull county, OH<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2011&amp;site_id=233\" target=\"_blank\">2011</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2010&amp;site_id=233\" target=\"_blank\">2010</a> - 1 birds",
					new String( "2011,2010" ), "bl" ),
		new Array( "OH", "41.3765277", "-83.6480833",
					"<b>Wood County Courthouse, Bowling Green</b><br /> in Wood county, OH<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2011&amp;site_id=271\" target=\"_blank\">2011</a> - 4 birds",
					new String( "2011" ), "bl" ),
		new Array( "ON", "5320858N", "-310077",
					"<b>Finger Point, Lake Superior</b><br />, ON<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2010&amp;site_id=185\" target=\"_blank\">2010</a> - 2 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2008&amp;site_id=185\" target=\"_blank\">2008</a> - 2 birds",
					new String( "2010,2008" ), "cl" ),
		new Array( "ON", "5350964N", "-322301",
					"<b>Mount McQuiag</b><br />, ON<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2020&amp;site_id=251\" target=\"_blank\">2020</a> - 3 birds",
					new String( "2020" ), "cl" ),
		new Array( "ON", "48.2", "-89.2",
					"<b>Mount McRae (do not use)</b><br />, ON<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2006&amp;site_id=224\" target=\"_blank\">2006</a> - 4 birds",
					new String( "2006" ), "cl" ),
		new Array( "ON", "5423980", "-427876",
					"<b>Nipigon Bay Lookout</b><br />, ON<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2011&amp;site_id=250\" target=\"_blank\">2011</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2010&amp;site_id=250\" target=\"_blank\">2010</a> - 3 birds",
					new String( "2011,2010" ), "cl" ),
		new Array( "ON", "48.3613888", "-89.5288888",
					"<b>Oliver Creek Road</b><br /> in Thunder Bay county, ON<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2008&amp;site_id=74\" target=\"_blank\">2008</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2006&amp;site_id=74\" target=\"_blank\">2006</a> - 1 birds",
					new String( "2008,2006" ), "br" ),
		new Array( "ON", "309275E", "-5353056",
					"<b>Oliver Creek Road</b><br />, ON<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2011&amp;site_id=186\" target=\"_blank\">2011</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2010&amp;site_id=186\" target=\"_blank\">2010</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2009&amp;site_id=186\" target=\"_blank\">2009</a> - 4 birds",
					new String( "2011,2010,2009" ), "cl" ),
		new Array( "ON", "5405557N", "-377534",
					"<b>Ouimet Canyon Provincial Park</b><br />, ON<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2011&amp;site_id=270\" target=\"_blank\">2011</a> - 2 birds",
					new String( "2011" ), "cl" ),
		new Array( "ON", "5426199N", "-413446",
					"<b>Ruby Lake</b><br />, ON<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2011&amp;site_id=269\" target=\"_blank\">2011</a> - 2 birds",
					new String( "2011" ), "cl" ),
		new Array( "ON", "48.2", "-89.1",
					"<b>Squaw Bay (do not use)</b><br />, ON<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2006&amp;site_id=223\" target=\"_blank\">2006</a> - 3 birds",
					new String( "2006" ), "cl" ),
		new Array( "ON", "5339062N", "-320419",
					"<b>Sturgeon Bay Road Farm</b><br />, ON",
					new String( "" ), "cl" ),
		new Array( "WI", "44.3095833", "-91",
					"<b>12-Mile Bluff located behind Dairyland\'s Alma plant.</b><br /> in Buffalo county, WI<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2011&amp;site_id=147\" target=\"_blank\">2011</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2009&amp;site_id=147\" target=\"_blank\">2009</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2007&amp;site_id=147\" target=\"_blank\">2007</a> - 4 birds",
					new String( "2011,2009,2007" ), "cl" ),
		new Array( "WI", "43 29 17 N", "-89",
					"<b>Alliant Columbia Generating Station Pardeeville</b><br /> in Columbia county, WI<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2011&amp;site_id=159\" target=\"_blank\">2011</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2010&amp;site_id=159\" target=\"_blank\">2010</a> - 6 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2009&amp;site_id=159\" target=\"_blank\">2009</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2008&amp;site_id=159\" target=\"_blank\">2008</a> - 6 birds",
					new String( "2011,2010,2009,2008" ), "sm" ),
		new Array( "WI", "42.7223888", "-91.0091666",
					"<b>Alliant Energy Nelson Dewey, Cassville</b><br /> in Grant county, WI<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2011&amp;site_id=64\" target=\"_blank\">2011</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2010&amp;site_id=64\" target=\"_blank\">2010</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2009&amp;site_id=64\" target=\"_blank\">2009</a> - 2 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2008&amp;site_id=64\" target=\"_blank\">2008</a> - 2 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2007&amp;site_id=64\" target=\"_blank\">2007</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2006&amp;site_id=64\" target=\"_blank\">2006</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2005&amp;site_id=64\" target=\"_blank\">2005</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2003&amp;site_id=64\" target=\"_blank\">2003</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2002&amp;site_id=64\" target=\"_blank\">2002</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2001&amp;site_id=64\" target=\"_blank\">2001</a> - 3 birds",
					new String( "2011,2010,2009,2008,2007,2006,2005,2003,2002,2001" ), "sm" ),
		new Array( "WI", "43 02 12N", "-88",
					"<b>Cargill Malt Complex, now Valero Complex, Jefferson</b><br /> in Jefferson county, WI<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2011&amp;site_id=116\" target=\"_blank\">2011</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2010&amp;site_id=116\" target=\"_blank\">2010</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2009&amp;site_id=116\" target=\"_blank\">2009</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2008&amp;site_id=116\" target=\"_blank\">2008</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2007&amp;site_id=116\" target=\"_blank\">2007</a> - 5 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2006&amp;site_id=116\" target=\"_blank\">2006</a> - 4 birds",
					new String( "2011,2010,2009,2008,2007,2006" ), "bl" ),
		new Array( "WI", "44.0875833", "-91.5647777",
					"<b>Castle Rock</b><br /> in Trempealeau county, WI<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2011&amp;site_id=96\" target=\"_blank\">2011</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2008&amp;site_id=96\" target=\"_blank\">2008</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2006&amp;site_id=96\" target=\"_blank\">2006</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2005&amp;site_id=96\" target=\"_blank\">2005</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2004&amp;site_id=96\" target=\"_blank\">2004</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2003&amp;site_id=96\" target=\"_blank\">2003</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2002&amp;site_id=96\" target=\"_blank\">2002</a> - 3 birds",
					new String( "2011,2008,2006,2005,2004,2003,2002" ), "cl" ),
		new Array( "WI", "44.305", "-91.9066666",
					"<b>Dairyland Cooperative, Alma</b><br /> in Buffalo county, WI<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2008&amp;site_id=95\" target=\"_blank\">2008</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2006&amp;site_id=95\" target=\"_blank\">2006</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2004&amp;site_id=95\" target=\"_blank\">2004</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2003&amp;site_id=95\" target=\"_blank\">2003</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2002&amp;site_id=95\" target=\"_blank\">2002</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2001&amp;site_id=95\" target=\"_blank\">2001</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2000&amp;site_id=95\" target=\"_blank\">2000</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1999&amp;site_id=95\" target=\"_blank\">1999</a> - 5 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1998&amp;site_id=95\" target=\"_blank\">1998</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1997&amp;site_id=95\" target=\"_blank\">1997</a> - 3 birds",
					new String( "2008,2006,2004,2003,2002,2001,2000,1999,1998,1997" ), "sm" ),
		new Array( "WI", "43.5593888", "-91.2326111",
					"<b>Dairyland Cooperative, Genoa</b><br /> in Vernon county, WI<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2011&amp;site_id=63\" target=\"_blank\">2011</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2010&amp;site_id=63\" target=\"_blank\">2010</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2008&amp;site_id=63\" target=\"_blank\">2008</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2007&amp;site_id=63\" target=\"_blank\">2007</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2006&amp;site_id=63\" target=\"_blank\">2006</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2005&amp;site_id=63\" target=\"_blank\">2005</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2004&amp;site_id=63\" target=\"_blank\">2004</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2003&amp;site_id=63\" target=\"_blank\">2003</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2002&amp;site_id=63\" target=\"_blank\">2002</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2001&amp;site_id=63\" target=\"_blank\">2001</a> - 1 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2000&amp;site_id=63\" target=\"_blank\">2000</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1999&amp;site_id=63\" target=\"_blank\">1999</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1998&amp;site_id=63\" target=\"_blank\">1998</a> - 2 birds",
					new String( "2011,2010,2008,2007,2006,2005,2004,2003,2002,2001,2000,1999,1998" ), "sm" ),
		new Array( "WI", "44.37455", "-92.35014",
					"<b>Diamond Bluff, Diamond Bluff WI</b><br /> in Pierce county, WI<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2011&amp;site_id=253\" target=\"_blank\">2011</a> - 2 birds",
					new String( "2011" ), "cl" ),
		new Array( "WI", "43.004835", "-87.961929",
					"<b>Froedtert Malt, now Maleutrop Complex, Milwaukee</b><br /> in Milwaukee county, WI<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2011&amp;site_id=118\" target=\"_blank\">2011</a> - 1 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2010&amp;site_id=118\" target=\"_blank\">2010</a> - 2 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2008&amp;site_id=118\" target=\"_blank\">2008</a> - 2 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2007&amp;site_id=118\" target=\"_blank\">2007</a> - 2 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2006&amp;site_id=118\" target=\"_blank\">2006</a> - 2 birds",
					new String( "2011,2010,2008,2007,2006" ), "bl" ),
		new Array( "WI", "44 29 33N", "-88",
					"<b>Georgia Pacific, Green Bay</b><br /> in Brown county, WI<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2011&amp;site_id=160\" target=\"_blank\">2011</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2010&amp;site_id=160\" target=\"_blank\">2010</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2009&amp;site_id=160\" target=\"_blank\">2009</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2008&amp;site_id=160\" target=\"_blank\">2008</a> - 1 birds",
					new String( "2011,2010,2009,2008" ), "bl" ),
		new Array( "WI", "44.1395277", "-91.7255833",
					"<b>Greshik\'s Bluff, Fountain City</b><br /> in Buffalo county, WI<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2008&amp;site_id=164\" target=\"_blank\">2008</a> - 3 birds",
					new String( "2008" ), "cl" ),
		new Array( "WI", "42.577", "-87.8194",
					"<b>Kenosha Memorial Hospital, Kenosha</b><br /> in Kenosha county, WI<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2011&amp;site_id=130\" target=\"_blank\">2011</a> - 1 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2008&amp;site_id=130\" target=\"_blank\">2008</a> - 2 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2007&amp;site_id=130\" target=\"_blank\">2007</a> - 1 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2006&amp;site_id=130\" target=\"_blank\">2006</a> - 5 birds",
					new String( "2011,2008,2007,2006" ), "bl" ),
		new Array( "WI", "43.4869444", "-91.0880277",
					"<b>Lee\'s Bluff, Lynxville (also P5, Lynxville Cliff)</b><br /> in Crawford county, WI<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2010&amp;site_id=65\" target=\"_blank\">2010</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2009&amp;site_id=65\" target=\"_blank\">2009</a> - 1 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2006&amp;site_id=65\" target=\"_blank\">2006</a> - 2 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2005&amp;site_id=65\" target=\"_blank\">2005</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2003&amp;site_id=65\" target=\"_blank\">2003</a> - 4 birds",
					new String( "2010,2009,2006,2005,2003" ), "cl" ),
		new Array( "WI", "43.2135555", "-91.1922222",
					"<b>Lock & Dam 9, WI</b><br /> in Crawford county, WI<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2007&amp;site_id=145\" target=\"_blank\">2007</a> - 2 birds",
					new String( "2007" ), "br" ),
		new Array( "WI", "43.0794444", "-89.3744444",
					"<b>Madison Gas & Electric</b><br /> in Dane county, WI<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2011&amp;site_id=204\" target=\"_blank\">2011</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2010&amp;site_id=204\" target=\"_blank\">2010</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2009&amp;site_id=204\" target=\"_blank\">2009</a> - 3 birds",
					new String( "2011,2010,2009" ), "bl" ),
		new Array( "WI", "44.5", "-92.2866666",
					"<b>Maiden Rock</b><br /> in Pepin county, WI<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2009&amp;site_id=136\" target=\"_blank\">2009</a> - 2 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2008&amp;site_id=136\" target=\"_blank\">2008</a> - 1 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2007&amp;site_id=136\" target=\"_blank\">2007</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2006&amp;site_id=136\" target=\"_blank\">2006</a> - 2 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2005&amp;site_id=136\" target=\"_blank\">2005</a> - 2 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2004&amp;site_id=136\" target=\"_blank\">2004</a> - 2 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2003&amp;site_id=136\" target=\"_blank\">2003</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2002&amp;site_id=136\" target=\"_blank\">2002</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2001&amp;site_id=136\" target=\"_blank\">2001</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1987&amp;site_id=136\" target=\"_blank\">1987</a> - 2 birds",
					new String( "2009,2008,2007,2006,2005,2004,2003,2002,2001,1987" ), "cl" ),
		new Array( "WI", "43 06 68N", "-88",
					"<b>Mayfair Mall</b><br /> in Milwaukee county, WI<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2020&amp;site_id=243\" target=\"_blank\">2020</a> - 4 birds",
					new String( "2020" ), "bl" ),
		new Array( "WI", "44 13 08 N", "-88",
					"<b>Roland Kampo  Bridge, Menasha</b><br /> in Winnebago county, WI<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2009&amp;site_id=198\" target=\"_blank\">2009</a> - 1 birds",
					new String( "2009" ), "br" ),
		new Array( "WI", "43 04 26 N", "-87",
					"<b>St. Joseph\'s Hospital</b><br /> in Milwaukee county, WI<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2011&amp;site_id=261\" target=\"_blank\">2011</a> - 3 birds",
					new String( "2011" ), "bl" ),
		new Array( "WI", "44 16 57N", "-88",
					"<b>Thilmany Mill, Kaukauna (use this one)</b><br /> in Outagamie county, WI<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2011&amp;site_id=158\" target=\"_blank\">2011</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2009&amp;site_id=158\" target=\"_blank\">2009</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2008&amp;site_id=158\" target=\"_blank\">2008</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2007&amp;site_id=158\" target=\"_blank\">2007</a> - 3 birds",
					new String( "2011,2009,2008,2007" ), "bl" ),
		new Array( "WI", "44.00343", "-91.27136",
					"<b>Trempealeau Bluff</b><br /> in Trempealeau county, WI<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2011&amp;site_id=254\" target=\"_blank\">2011</a> - 2 birds",
					new String( "2011" ), "cl" ),
		new Array( "WI", "43.8135", "-91.2527777",
					"<b>US Bank La Crosse</b><br /> in La Crosse county, WI<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2011&amp;site_id=97\" target=\"_blank\">2011</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2010&amp;site_id=97\" target=\"_blank\">2010</a> - 1 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2009&amp;site_id=97\" target=\"_blank\">2009</a> - 2 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2008&amp;site_id=97\" target=\"_blank\">2008</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2007&amp;site_id=97\" target=\"_blank\">2007</a> - 2 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2006&amp;site_id=97\" target=\"_blank\">2006</a> - 3 birds",
					new String( "2011,2010,2009,2008,2007,2006" ), "bl" ),
		new Array( "WI", "44 01 18N", "-88",
					"<b>UW Oshkosh</b><br /> in Winnebago county, WI<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2011&amp;site_id=262\" target=\"_blank\">2011</a> - 2 birds",
					new String( "2011" ), "bl" ),
		new Array( "WI", "43 01 25 N", "-87",
					"<b>UW-Milwaukee EMS</b><br /> in Milwaukee county, WI<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2011&amp;site_id=197\" target=\"_blank\">2011</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2010&amp;site_id=197\" target=\"_blank\">2010</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2009&amp;site_id=197\" target=\"_blank\">2009</a> - 4 birds",
					new String( "2011,2010,2009" ), "bl" ),
		new Array( "WI", "42.536", "-87.905",
					"<b>WEPCO Pleasant Prairie Power Plant, Pleasant Prairie</b><br /> in Kenosha county, WI<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2011&amp;site_id=109\" target=\"_blank\">2011</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2010&amp;site_id=109\" target=\"_blank\">2010</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2009&amp;site_id=109\" target=\"_blank\">2009</a> - 1 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2008&amp;site_id=109\" target=\"_blank\">2008</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2007&amp;site_id=109\" target=\"_blank\">2007</a> - 2 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2006&amp;site_id=109\" target=\"_blank\">2006</a> - 5 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2005&amp;site_id=109\" target=\"_blank\">2005</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2004&amp;site_id=109\" target=\"_blank\">2004</a> - 2 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2003&amp;site_id=109\" target=\"_blank\">2003</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2002&amp;site_id=109\" target=\"_blank\">2002</a> - 1 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2001&amp;site_id=109\" target=\"_blank\">2001</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2000&amp;site_id=109\" target=\"_blank\">2000</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1999&amp;site_id=109\" target=\"_blank\">1999</a> - 2 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1998&amp;site_id=109\" target=\"_blank\">1998</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1997&amp;site_id=109\" target=\"_blank\">1997</a> - 1 birds",
					new String( "2011,2010,2009,2008,2007,2006,2005,2004,2003,2002,2001,2000,1999,1998,1997" ), "sm" ),
		new Array( "WI", "43 23 01 N", "-87",
					"<b>WEPCO Port Washington Power Plant, Port Washington (use this one)</b><br /> in Ozaukee county, WI<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2011&amp;site_id=242\" target=\"_blank\">2011</a> - 2 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2010&amp;site_id=242\" target=\"_blank\">2010</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2009&amp;site_id=242\" target=\"_blank\">2009</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2008&amp;site_id=242\" target=\"_blank\">2008</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2007&amp;site_id=242\" target=\"_blank\">2007</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2006&amp;site_id=242\" target=\"_blank\">2006</a> - 2 birds",
					new String( "2011,2010,2009,2008,2007,2006" ), "sm" ),
		new Array( "WI", "43.715667", "-87.706389",
					"<b>WPL Edgewater Generating Station, Sheboygan</b><br /> in Sheboygan county, WI<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2011&amp;site_id=114\" target=\"_blank\">2011</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2010&amp;site_id=114\" target=\"_blank\">2010</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2009&amp;site_id=114\" target=\"_blank\">2009</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2007&amp;site_id=114\" target=\"_blank\">2007</a> - 1 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2006&amp;site_id=114\" target=\"_blank\">2006</a> - 4 birds",
					new String( "2011,2010,2009,2007,2006" ), "bl" ),
		new Array( "WI", "44.540072", "-88.008792",
					"<b>WPS Pulliam Power Plant, Green Bay</b><br /> in Brown county, WI<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2011&amp;site_id=112\" target=\"_blank\">2011</a> - 2 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2010&amp;site_id=112\" target=\"_blank\">2010</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2008&amp;site_id=112\" target=\"_blank\">2008</a> - 1 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2007&amp;site_id=112\" target=\"_blank\">2007</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2006&amp;site_id=112\" target=\"_blank\">2006</a> - 2 birds",
					new String( "2011,2010,2008,2007,2006" ), "bl" ),
		new Array( "WI", "44.8594444", "-89.6491666",
					"<b>WPS Weston Power Plant, Rothschild</b><br /> in Marathon county, WI<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2011&amp;site_id=71\" target=\"_blank\">2011</a> - 2 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2010&amp;site_id=71\" target=\"_blank\">2010</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2009&amp;site_id=71\" target=\"_blank\">2009</a> - 2 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2008&amp;site_id=71\" target=\"_blank\">2008</a> - 1 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2007&amp;site_id=71\" target=\"_blank\">2007</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2006&amp;site_id=71\" target=\"_blank\">2006</a> - 4 birds",
					new String( "2011,2010,2009,2008,2007,2006" ), "bl" ),
		new Array( "AL", "33.3", "-86.5",
					"<b>Birmingham</b><br /> in Jefferson county, AL",
					new String( "" ), "bl" ),
		new Array( "AR", "34.4", "-92.1",
					"<b>Little Rock</b><br /> in Pulaski county, AR",
					new String( "" ), "bl" ),
		new Array( "FL", "23.0", "-83",
					"<b>Long Key, Dry Tortugas</b><br /> in Florida Keys county, FL",
					new String( "" ), "" ),
		new Array( "IA", "43.2", "-91.5",
					"<b>Bluffton</b><br /> in Winneshiek county, IA",
					new String( "" ), "cl" ),
		new Array( "IA", "43.2", "-91.5",
					"<b>Bluffton/Centennial Bridge</b><br /> in Winneshiek county, IA",
					new String( "" ), "cl" ),
		new Array( "IA", "41.3", "-90.4",
					"<b>Centennial Bridge, Davenport</b><br /> in Scott county, IA",
					new String( "" ), "br" ),
		new Array( "IA", "41.3", "-93.3",
					"<b>Des Moines</b><br /> in Polk county, IA",
					new String( "" ), "bl" ),
		new Array( "IA", "42.3", "-90.4",
					"<b>Dubuque</b><br /> in Dubuque county, IA",
					new String( "" ), "cl" ),
		new Array( "IA", "43.0", "-91.1",
					"<b>Effigy Mounds National Monument</b><br /> in Allamakee county, IA",
					new String( "" ), "cl" ),
		new Array( "IA", "43.1", "-93.2",
					"<b>Holnam Plant, Mason City</b><br /> in Cerro Gordo county, IA",
					new String( "" ), "bl" ),
		new Array( "IA", "41.4", "-91.4",
					"<b>Iowa City</b><br /> in Johnson county, IA",
					new String( "" ), "bl" ),
		new Array( "IA", "43.1", "-93.2",
					"<b>Mason City</b><br /> in Cerro Gordo county, IA",
					new String( "" ), "bl" ),
		new Array( "IA", "41.2", "-91",
					"<b>MEC Louisa</b><br /> in Louisa county, IA<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2009&amp;site_id=27\" target=\"_blank\">2009</a> - 4 birds",
					new String( "2009" ), "bl" ),
		new Array( "IA", "41.2", "-91",
					"<b>Muscatine</b><br /> in Muscatine county, IA",
					new String( "" ), "" ),
		new Array( "IA", "41.2", "-91",
					"<b>Muscatine</b><br /> in Muscatine county, IA",
					new String( "" ), "bl" ),
		new Array( "IA", "43.1666666667", "-91.1733333333",
					"<b>Waukon Junction Cliff, Waukon Junction</b><br /> in Allamakee county, IA<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2007&amp;site_id=32\" target=\"_blank\">2007</a> - 2 birds",
					new String( "2007" ), "cl" ),
		new Array( "IL", "41.5", "-87.3",
					"<b>125 S. Wacker, Chicago</b><br /> in Cook county, IL<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2010&amp;site_id=35\" target=\"_blank\">2010</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2009&amp;site_id=35\" target=\"_blank\">2009</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2008&amp;site_id=35\" target=\"_blank\">2008</a> - 2 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2007&amp;site_id=35\" target=\"_blank\">2007</a> - 2 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2006&amp;site_id=35\" target=\"_blank\">2006</a> - 1 birds",
					new String( "2010,2009,2008,2007,2006" ), "bl" ),
		new Array( "IL", "41.6", "-87.3",
					"<b>3180 Lakeshore Drive, Chicago</b><br /> in Cook county, IL",
					new String( "" ), "bl" ),
		new Array( "IL", "41.5", "-87.3",
					"<b>5821 N. Broadway, Irving Park, Chicago</b><br /> in Cook county, IL<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2011&amp;site_id=39\" target=\"_blank\">2011</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2010&amp;site_id=39\" target=\"_blank\">2010</a> - 5 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2009&amp;site_id=39\" target=\"_blank\">2009</a> - 5 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2008&amp;site_id=39\" target=\"_blank\">2008</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2007&amp;site_id=39\" target=\"_blank\">2007</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2006&amp;site_id=39\" target=\"_blank\">2006</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2005&amp;site_id=39\" target=\"_blank\">2005</a> - 5 birds",
					new String( "2011,2010,2009,2008,2007,2006,2005" ), "bl" ),
		new Array( "IL", "41.5", "-87.3",
					"<b>Allerton Hotel, Chicago</b><br /> in Cook county, IL",
					new String( "" ), "bl" ),
		new Array( "IL", "41.5", "-87.3",
					"<b>Chicago</b><br /> in Cook county, IL",
					new String( "" ), "" ),
		new Array( "IL", "41.5", "-87.3",
					"<b>Chicago</b><br /> in Cook county, IL",
					new String( "" ), "bl" ),
		new Array( "IL", "42.1", "-87.5",
					"<b>Fort Sheridan</b><br /> in Lake county, IL",
					new String( "" ), "bl" ),
		new Array( "IL", "41.4", "-88",
					"<b>Glen Ellyn</b><br /> in Du Page county, IL",
					new String( "" ), "bl" ),
		new Array( "IL", "41.5", "-87.3",
					"<b>Hyde Park, Chicago</b><br /> in Cook county, IL",
					new String( "" ), "bl" ),
		new Array( "IL", "42.2", "-87.4",
					"<b>Illinois Beach</b><br /> in Lake county, IL",
					new String( "" ), "bl" ),
		new Array( "IL", "41.5", "-87.3",
					"<b>Irving Park, Chicago</b><br /> in Cook county, IL",
					new String( "" ), "" ),
		new Array( "IL", "41.5", "-87.3",
					"<b>Lakeview, Chicago</b><br /> in Cook county, IL",
					new String( "" ), "" ),
		new Array( "IL", "42.0", "-87.3",
					"<b>Lakeview, Chicago</b><br /> in Cook county, IL<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2011&amp;site_id=61\" target=\"_blank\">2011</a> - 1 birds",
					new String( "2011" ), "bl" ),
		new Array( "IL", "39.8", "-89.6",
					"<b>Springfield</b><br /> in Sangamon county, IL",
					new String( "" ), "bl" ),
		new Array( "IL", "41.5", "-87.3",
					"<b>Unitarian Church, Hyde Park, Chicago</b><br /> in Cook county, IL",
					new String( "" ), "bl" ),
		new Array( "IL", "41.5", "-87.3",
					"<b>University Hall, University of Illinois, Chicago</b><br /> in Cook county, IL<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2011&amp;site_id=75\" target=\"_blank\">2011</a> - 2 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2010&amp;site_id=75\" target=\"_blank\">2010</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2009&amp;site_id=75\" target=\"_blank\">2009</a> - 2 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2008&amp;site_id=75\" target=\"_blank\">2008</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2007&amp;site_id=75\" target=\"_blank\">2007</a> - 3 birds",
					new String( "2011,2010,2009,2008,2007" ), "bl" ),
		new Array( "IL", "41.5", "-87.3",
					"<b>Wacker and Michigan, Chicago</b><br /> in Cook county, IL<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2006&amp;site_id=78\" target=\"_blank\">2006</a> - 3 birds",
					new String( "2006" ), "bl" ),
		new Array( "IN", "41.3", "-87",
					"<b>Bailly Power Plant, Porter</b><br /> in Porter county, IN<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2011&amp;site_id=79\" target=\"_blank\">2011</a> - 2 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2010&amp;site_id=79\" target=\"_blank\">2010</a> - 4 birds",
					new String( "2011,2010" ), "sm" ),
		new Array( "IN", "41.6366666667", "-87.1416666667",
					"<b>Bethlehem Steel, Burns Harbor</b><br /> in Porter county, IN<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2010&amp;site_id=81\" target=\"_blank\">2010</a> - 2 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2008&amp;site_id=81\" target=\"_blank\">2008</a> - 4 birds",
					new String( "2010,2008" ), "bl" ),
		new Array( "IN", "41.6366666667", "-87.1416666667",
					"<b>Bethlehem Steel, Burns Harbor / Cargill</b><br /> in Porter county, IN",
					new String( "" ), "bl" ),
		new Array( "IN", "41.6516666667", "-87.465",
					"<b>Cline Avenue No. 2, East Chicago</b><br /> in Lake county, IN",
					new String( "" ), "br" ),
		new Array( "IN", "41.3", "-87.2",
					"<b>Cline Avenue, East Chicago</b><br /> in Lake county, IN",
					new String( "" ), "bl" ),
		new Array( "IN", "41.6516666667", "-87.465",
					"<b>Cline Avenue, East Chicago</b><br /> in Lake county, IN",
					new String( "" ), "br" ),
		new Array( "IN", "38.0", "-87.5",
					"<b>Evansville</b><br /> in Vanderburgh county, IN",
					new String( "" ), "bl" ),
		new Array( "IN", "41.0", "-85",
					"<b>Fort Wayne</b><br /> in Allen county, IN",
					new String( "" ), "" ),
		new Array( "IN", "41.0", "-85",
					"<b>Fort Wayne</b><br /> in Allen county, IN",
					new String( "" ), "bl" ),
		new Array( "IN", "39.4", "-86",
					"<b>Indianapolis</b><br /> in Marion county, IN",
					new String( "" ), "" ),
		new Array( "IN", "39.4", "-86",
					"<b>Indianapolis</b><br /> in Marion county, IN",
					new String( "" ), "bl" ),
		new Array( "IN", "39.4", "-86.9",
					"<b>Indianapolis</b><br /> in Marion county, IN",
					new String( "" ), "bl" ),
		new Array( "IN", "41.3", "-87.2",
					"<b>Inland Steel, East Chicago</b><br /> in Lake county, IN",
					new String( "" ), "bl" ),
		new Array( "IN", "41.3", "-87.2",
					"<b>LT Steel</b><br /> in Lake county, IN",
					new String( "" ), "" ),
		new Array( "IN", "41.3", "-87",
					"<b>NIPSCO Bailly Plant, Burns Harbor</b><br /> in Porter county, IN",
					new String( "" ), "sm" ),
		new Array( "IN", "41.3", "-87",
					"<b>NIPSCO Bailly/Bethlehem Steel/Cargill, Burns Harbor</b><br /> in Porter county, IN",
					new String( "" ), "bl" ),
		new Array( "IN", "41.3", "-87",
					"<b>NIPSCO Bailly/Bethlehem Steel/Cargill, Burns Harbor</b><br /> in Porter county, IN<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2006&amp;site_id=112\" target=\"_blank\">2006</a> - 1 birds",
					new String( "2006" ), "sm" ),
		new Array( "IN", "41.4", "-86.2",
					"<b>South Bend</b><br /> in St. Joseph county, IN",
					new String( "" ), "" ),
		new Array( "IN", "41.4", "-86.2",
					"<b>South Bend</b><br /> in St. Joseph county, IN",
					new String( "" ), "bl" ),
		new Array( "IN", "39.4", "-86",
					"<b>War Memorial, Indianapolis</b><br /> in Marion county, IN",
					new String( "" ), "bl" ),
		new Array( "KS", "39.0", "-95.7",
					"<b>535 South Kansas Avenue, Topeka</b><br /> in Shawnee county, KS<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2008&amp;site_id=133\" target=\"_blank\">2008</a> - 1 birds",
					new String( "2008" ), "bl" ),
		new Array( "KS", "39.0", "-96.5",
					"<b>Junction City</b><br /> in Geary county, KS",
					new String( "" ), "" ),
		new Array( "KY", "37.4", "-84.4",
					"<b>Burgin</b><br /> in Mercer county, KY",
					new String( "" ), "bl" ),
		new Array( "MB", "49.4", "-97.1",
					"<b>Delta Winnipeg Hotel, Winnipeg</b><br />, MB",
					new String( "" ), "bl" ),
		new Array( "MB", "49.4", "-97.1",
					"<b>Fort Garry Hotel, Winnipeg</b><br />, MB",
					new String( "" ), "bl" ),
		new Array( "MB", "49.4", "-97.1",
					"<b>Legislative Building, Winnipeg</b><br />, MB",
					new String( "" ), "bl" ),
		new Array( "MB", "49.4", "-97.1",
					"<b>Mary Speechly Hall, Univ. Manitoba, Winnipeg</b><br />, MB",
					new String( "" ), "bl" ),
		new Array( "MB", "49.4", "-100",
					"<b>McKenzie Seeds, Brandon</b><br />, MB<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2010&amp;site_id=166\" target=\"_blank\">2010</a> - 2 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2009&amp;site_id=166\" target=\"_blank\">2009</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2007&amp;site_id=166\" target=\"_blank\">2007</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2006&amp;site_id=166\" target=\"_blank\">2006</a> - 2 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2005&amp;site_id=166\" target=\"_blank\">2005</a> - 1 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=1990&amp;site_id=166\" target=\"_blank\">1990</a> - 5 birds",
					new String( "2010,2009,2007,2006,2005,1990" ), "bl" ),
		new Array( "MB", "49.4", "-97.1",
					"<b>Provincial Legislature, Winnipeg</b><br />, MB",
					new String( "" ), "bl" ),
		new Array( "MB", "49.4", "-97.1",
					"<b>St Boniface Basilica, Winnipeg</b><br />, MB",
					new String( "" ), "bl" ),
		new Array( "MB", "49.4", "-97.1",
					"<b>St. Boniface Cathedral, Winnipeg</b><br />, MB",
					new String( "" ), "bl" ),
		new Array( "MB", "49.4", "-97.1",
					"<b>Winnipeg</b><br />, MB",
					new String( "" ), "bl" ),
		new Array( "MI", "42.2", "-83.4",
					"<b>Ann Arbor</b><br /> in Washtenaw county, MI",
					new String( "" ), "" ),
		new Array( "MI", "46.4", "-89.3",
					"<b>Bergland</b><br /> in Ontonagon county, MI",
					new String( "" ), "cl" ),
		new Array( "MI", "42.2", "-83",
					"<b>Book Building, Detroit</b><br /> in Wayne county, MI",
					new String( "" ), "bl" ),
		new Array( "MI", "42.9", "-86.2",
					"<b>Consumers Power, West Olive</b><br /> in Ottawa county, MI",
					new String( "" ), "sm" ),
		new Array( "MI", "42.2", "-83",
					"<b>Detroit</b><br /> in Wayne county, MI",
					new String( "" ), "bl" ),
		new Array( "MI", "42.2", "-83",
					"<b>Detroit Edison Connor Creek Power Plant, Detroit</b><br /> in Wayne county, MI",
					new String( "" ), "bl" ),
		new Array( "MI", "47.5", "-89.2",
					"<b>Feldtmann Ridge, Isle Royale</b><br /> in Keweenaw county, MI",
					new String( "" ), "cl" ),
		new Array( "MI", "46.3", "-86.4",
					"<b>Grand Island</b><br /> in Alger county, MI",
					new String( "" ), "cl" ),
		new Array( "MI", "42.5", "-85.3",
					"<b>Grand Rapids</b><br /> in Kent county, MI<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2007&amp;site_id=199\" target=\"_blank\">2007</a> - 3 birds",
					new String( "2007" ), "bl" ),
		new Array( "MI", "47.5", "-89.2",
					"<b>Isle Royale</b><br /> in Keweenaw county, MI",
					new String( "" ), "cl" ),
		new Array( "MI", "46.3", "-86.2",
					"<b>Pictured Rocks</b><br /> in Alger county, MI",
					new String( "" ), "cl" ),
		new Array( "MI", "46.5", "-89.5",
					"<b>Porcupine Mountains Wilderness State Park</b><br /> in Ontonagon county, MI",
					new String( "" ), "cl" ),
		new Array( "MI", "46.4", "-89.3",
					"<b>Trap Hills, Bergland</b><br /> in Ontonagon county, MI",
					new String( "" ), "cl" ),
		new Array( "MI", "42.2", "-83",
					"<b>Westin Hotel, Detroit</b><br /> in Wayne county, MI",
					new String( "" ), "bl" ),
		new Array( "MO", "38.4", "-90.1",
					"<b>Chase Park Plaza, St. Louis</b><br /> in St. Louis county, MO",
					new String( "" ), "bl" ),
		new Array( "MO", "39.0", "-94.3",
					"<b>City Hall, Kansas City</b><br /> in Jackson county, MO",
					new String( "" ), "bl" ),
		new Array( "MO", "39.0", "-94.3",
					"<b>Commerce Tower, Kansas City</b><br /> in Jackson county, MO<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2008&amp;site_id=367\" target=\"_blank\">2008</a> - 1 birds",
					new String( "2008" ), "bl" ),
		new Array( "MO", "38.7", "-90.1",
					"<b>I-270 Bridge, St. Louis</b><br /> in St. Louis county, MO",
					new String( "" ), "br" ),
		new Array( "MO", "39.0", "-94.3",
					"<b>Kansas City</b><br /> in Jackson county, MO",
					new String( "" ), "" ),
		new Array( "MO", "39.0", "-94.3",
					"<b>Kansas City</b><br /> in Jackson county, MO<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2009&amp;site_id=376\" target=\"_blank\">2009</a> - 1 birds",
					new String( "2009" ), "bl" ),
		new Array( "NE", "41.1", "-95.5",
					"<b>Omaha</b><br /> in Douglas county, NE",
					new String( "" ), "bl" ),
		new Array( "OH", "41.0", "-81.3",
					"<b>Akron</b><br /> in Summit county, OH",
					new String( "" ), "" ),
		new Array( "OH", "41.0", "-81.3",
					"<b>Akron</b><br /> in Summit county, OH",
					new String( "" ), "bl" ),
		new Array( "OH", "39.0", "-84.3",
					"<b>Central Trust, Cincinnati</b><br /> in Hamilton county, OH",
					new String( "" ), "bl" ),
		new Array( "OH", "39.0", "-84.3",
					"<b>Chemed Center, Cincinnati</b><br /> in Hamilton county, OH",
					new String( "" ), "bl" ),
		new Array( "OH", "39.0", "-84.3",
					"<b>Cincinnati</b><br /> in Hamilton county, OH<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2008&amp;site_id=424\" target=\"_blank\">2008</a> - 3 birds",
					new String( "2008" ), "bl" ),
		new Array( "OH", "40.0", "-83",
					"<b>Columbus</b><br /> in Franklin county, OH<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2008&amp;site_id=428\" target=\"_blank\">2008</a> - 4 birds",
					new String( "2008" ), "bl" ),
		new Array( "OH", "39.5", "-84.2",
					"<b>Dayton</b><br /> in Montgomery county, OH<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2008&amp;site_id=431\" target=\"_blank\">2008</a> - 2 birds",
					new String( "2008" ), "" ),
		new Array( "OH", "41.0", "-81.3",
					"<b>First Merit Bank, Akron</b><br /> in Summit county, OH",
					new String( "" ), "bl" ),
		new Array( "OH", "39.5", "-84.2",
					"<b>Lazarus Building, Dayton</b><br /> in Montgomery county, OH",
					new String( "" ), "bl" ),
		new Array( "OH", "41.3", "-82.2",
					"<b>USS/Kobe Steel, Lorain</b><br /> in Lorain county, OH",
					new String( "" ), "bl" ),
		new Array( "OH", "40.3", "-83.3",
					"<b>West Mansfield Conservation Club</b><br /> in Logan County county, OH",
					new String( "" ), "" ),
		new Array( "OH", "41.3", "-81.4",
					"<b>Winton Place, Lakewood</b><br /> in Cuyahoga county, OH",
					new String( "" ), "bl" ),
		new Array( "OK", "36.1", "-96",
					"<b>Tulsa</b><br /> in Tulsa county, OK",
					new String( "" ), "" ),
		new Array( "ON", "48.1795481733", "-90.2159234819",
					"<b>Arrow Lake Provincial Park</b><br />, ON<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2010&amp;site_id=468\" target=\"_blank\">2010</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2009&amp;site_id=468\" target=\"_blank\">2009</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2008&amp;site_id=468\" target=\"_blank\">2008</a> - 3 birds",
					new String( "2010,2009,2008" ), "cl" ),
		new Array( "ON", "48.1268003607", "-90.4205014648",
					"<b>Arrow Lake West End</b><br />, ON<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2011&amp;site_id=470\" target=\"_blank\">2011</a> - 1 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2010&amp;site_id=470\" target=\"_blank\">2010</a> - 2 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2009&amp;site_id=470\" target=\"_blank\">2009</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2007&amp;site_id=470\" target=\"_blank\">2007</a> - 2 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2006&amp;site_id=470\" target=\"_blank\">2006</a> - 4 birds",
					new String( "2011,2010,2009,2007,2006" ), "cl" ),
		new Array( "ON", "43.0", "-82.2",
					"<b>Bluewater Bridge, Port Huron MI to Sarnia, Ontario</b><br />, ON",
					new String( "" ), "" ),
		new Array( "ON", "48.780954514", "-86.9990743606",
					"<b>Cape Victoria</b><br />, ON<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2006&amp;site_id=477\" target=\"_blank\">2006</a> - 1 birds",
					new String( "2006" ), "cl" ),
		new Array( "ON", "48.8882076162", "-87.6577509233",
					"<b>Cavers Bay</b><br />, ON<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2011&amp;site_id=481\" target=\"_blank\">2011</a> - 3 birds",
					new String( "2011" ), "cl" ),
		new Array( "ON", "48.201360306", "-89.4846375324",
					"<b>Copper Cliff Road West</b><br />, ON<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2010&amp;site_id=483\" target=\"_blank\">2010</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2009&amp;site_id=483\" target=\"_blank\">2009</a> - 1 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2007&amp;site_id=483\" target=\"_blank\">2007</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2006&amp;site_id=483\" target=\"_blank\">2006</a> - 4 birds",
					new String( "2010,2009,2007,2006" ), "cl" ),
		new Array( "ON", "48.8141167873", "-88.6239351785",
					"<b>Dorion Tower</b><br />, ON<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2010&amp;site_id=486\" target=\"_blank\">2010</a> - 1 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2009&amp;site_id=486\" target=\"_blank\">2009</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2008&amp;site_id=486\" target=\"_blank\">2008</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2007&amp;site_id=486\" target=\"_blank\">2007</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2006&amp;site_id=486\" target=\"_blank\">2006</a> - 3 birds",
					new String( "2010,2009,2008,2007,2006" ), "cl" ),
		new Array( "ON", "46.8202522846", "-84.3882031026",
					"<b>Haviland Bay \"new site\"</b><br />, ON",
					new String( "" ), "cl" ),
		new Array( "ON", "46.8202522846", "-84.3882031026",
					"<b>Haviland Bay, \"new site\"</b><br />, ON",
					new String( "" ), "cl" ),
		new Array( "ON", "48.993068742", "-88.0235654424",
					"<b>Kama Bay</b><br />, ON<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2011&amp;site_id=497\" target=\"_blank\">2011</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2010&amp;site_id=497\" target=\"_blank\">2010</a> - 1 birds",
					new String( "2011,2010" ), "cl" ),
		new Array( "ON", "49.0", "-87.6",
					"<b>Kama Hills</b><br />, ON",
					new String( "" ), "cl" ),
		new Array( "ON", "49.0", "-87.6",
					"<b>Kama Hills, Nipigon</b><br />, ON",
					new String( "" ), "cl" ),
		new Array( "ON", "48.3157793878", "-89.3186454066",
					"<b>Mount McRae</b><br />, ON<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2011&amp;site_id=509\" target=\"_blank\">2011</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2010&amp;site_id=509\" target=\"_blank\">2010</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2009&amp;site_id=509\" target=\"_blank\">2009</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2008&amp;site_id=509\" target=\"_blank\">2008</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2007&amp;site_id=509\" target=\"_blank\">2007</a> - 3 birds",
					new String( "2011,2010,2009,2008,2007" ), "cl" ),
		new Array( "ON", "48.9639323284", "-88.2431801935",
					"<b>Nipigon River Mouth</b><br />, ON<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2011&amp;site_id=514\" target=\"_blank\">2011</a> - 3 birds",
					new String( "2011" ), "cl" ),
		new Array( "ON", "48.6", "-88.1",
					"<b>Nipigon River Mouth</b><br />, ON<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2010&amp;site_id=515\" target=\"_blank\">2010</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2006&amp;site_id=515\" target=\"_blank\">2006</a> - 4 birds",
					new String( "2010,2006" ), "cl" ),
		new Array( "ON", "48.0", "-89.3",
					"<b>NW Mollie Mountain</b><br />, ON",
					new String( "" ), "cl" ),
		new Array( "ON", "47.7761748161", "-84.914771593",
					"<b>Old Woman Bay, Lake Superior Provincial Park</b><br />, ON",
					new String( "" ), "cl" ),
		new Array( "ON", "48.0974984102", "-86.0373713998",
					"<b>Otter Island, Pukaskwa National Park</b><br />, ON",
					new String( "" ), "cl" ),
		new Array( "ON", "48.1", "-89",
					"<b>Pie Island, Turtle Head</b><br />, ON",
					new String( "" ), "cl" ),
		new Array( "ON", "48.0253499918", "-85.9200157091",
					"<b>Pukaskwa Depot, Pukaskwa National Park</b><br />, ON",
					new String( "" ), "cl" ),
		new Array( "ON", "48.0", "-85.5",
					"<b>Richardson Harbor, 5 km. south at Pukaskwa Depot</b><br />, ON",
					new String( "" ), "cl" ),
		new Array( "ON", "48.2074944681", "-89.7403616151",
					"<b>South Gillies, SW of Microwave Tower, Hwy 595</b><br />, ON<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2010&amp;site_id=545\" target=\"_blank\">2010</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2006&amp;site_id=545\" target=\"_blank\">2006</a> - 3 birds",
					new String( "2010,2006" ), "cl" ),
		new Array( "ON", "48.2756216001", "-89.4178510683",
					"<b>Squaretop Mountain</b><br />, ON<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2008&amp;site_id=548\" target=\"_blank\">2008</a> - 2 birds",
					new String( "2008" ), "cl" ),
		new Array( "ON", "48.2", "-89.3",
					"<b>Squaretop Mountain</b><br />, ON<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2006&amp;site_id=549\" target=\"_blank\">2006</a> - 4 birds",
					new String( "2006" ), "cl" ),
		new Array( "ON", "48.300411782", "-89.2405972046",
					"<b>Squaw Bay</b><br />, ON<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2009&amp;site_id=551\" target=\"_blank\">2009</a> - 2 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2007&amp;site_id=551\" target=\"_blank\">2007</a> - 2 birds",
					new String( "2009,2007" ), "cl" ),
		new Array( "ON", "48.2", "-88.6",
					"<b>Thunder Cape, Sleeping Giant Provincial Park</b><br />, ON",
					new String( "" ), "cl" ),
		new Array( "ON", "48.1", "-90",
					"<b>Whitefish Lake</b><br />, ON<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2007&amp;site_id=565\" target=\"_blank\">2007</a> - 3 birds",
					new String( "2007" ), "cl" ),
		new Array( "ON", "42.1", "-83",
					"<b>Windsor, near airport</b><br />, ON",
					new String( "" ), "" ),
		new Array( "SD", "43.3", "-96.5",
					"<b>Sioux Falls</b><br /> in Minnehaha county, SD",
					new String( "" ), "bl" ),
		new Array( "WI", "46.5", "-92",
					"<b>Bong Bridge, Superior</b><br /> in Douglas county, WI",
					new String( "" ), "br" ),
		new Array( "WI", "44.2", "-92",
					"<b>Dairyland Cooperative, Alma</b><br /> in Buffalo county, WI<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2006&amp;site_id=586\" target=\"_blank\">2006</a> - 1 birds",
					new String( "2006" ), "bl" ),
		new Array( "WI", "44.305", "-91.9066666667",
					"<b>Dairyland Cooperative, Alma</b><br /> in Buffalo county, WI",
					new String( "" ), "cl" ),
		new Array( "WI", "43.2", "-89.3",
					"<b>Devil\'s Lake State Park</b><br /> in Columbia county, WI",
					new String( "" ), "cl" ),
		new Array( "WI", "43.0", "-87.5",
					"<b>Firstar Center, Milwaukee</b><br /> in Milwaukee county, WI<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2011&amp;site_id=594\" target=\"_blank\">2011</a> - 2 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2009&amp;site_id=594\" target=\"_blank\">2009</a> - 1 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2008&amp;site_id=594\" target=\"_blank\">2008</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2007&amp;site_id=594\" target=\"_blank\">2007</a> - 4 birds",
					new String( "2011,2009,2008,2007" ), "bl" ),
		new Array( "WI", "43.87", "-91.3183333333",
					"<b>Great Spirit Bluff, La Crescent</b><br /> in Houston county, WI<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2007&amp;site_id=598\" target=\"_blank\">2007</a> - 3 birds",
					new String( "2007" ), "cl" ),
		new Array( "WI", "43.0", "-87.5",
					"<b>Hoan Bridge, Milwaukee</b><br /> in Milwaukee county, WI",
					new String( "" ), "br" ),
		new Array( "WI", "42.3", "-87.5",
					"<b>Kenosha</b><br /> in Kenosha county, WI",
					new String( "" ), "" ),
		new Array( "WI", "42.3", "-87.5",
					"<b>Kenosha</b><br /> in Kenosha county, WI",
					new String( "" ), "bl" ),
		new Array( "WI", "43.0", "-87.5",
					"<b>Landmark on the Lake, Milwaukee</b><br /> in Milwaukee county, WI",
					new String( "" ), "bl" ),
		new Array( "WI", "44.3833333333", "-91.9566666667",
					"<b>Maassen Bluff</b><br /> in Buffalo county, WI<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2007&amp;site_id=614\" target=\"_blank\">2007</a> - 1 birds",
					new String( "2007" ), "cl" ),
		new Array( "WI", "43.0", "-89.2",
					"<b>Madison</b><br /> in Dane county, WI",
					new String( "" ), "bl" ),
		new Array( "WI", "42.4", "-87.5",
					"<b>Racine</b><br /> in Racine county, WI",
					new String( "" ), "" ),
		new Array( "WI", "42.4", "-87.5",
					"<b>Racine</b><br /> in Racine county, WI",
					new String( "" ), "bl" ),
		new Array( "WI", "43.5", "-91.1",
					"<b>St. Joseph Cathedral, La Crosse</b><br /> in La Crosse county, WI",
					new String( "" ), "bl" ),
		new Array( "WI", "43.0", "-89.2",
					"<b>State Capitol, Madison</b><br /> in Dane county, WI",
					new String( "" ), "bl" ),
		new Array( "WI", "43.0", "-89.2",
					"<b>Van Hise Hall, Univ. WI, Madison</b><br /> in Dane county, WI",
					new String( "" ), "" ),
		new Array( "WI", "44.525", "-92.29",
					"<b>West Bluff</b><br /> in Pepin county, WI<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2009&amp;site_id=640\" target=\"_blank\">2009</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2007&amp;site_id=640\" target=\"_blank\">2007</a> - 4 birds",
					new String( "2009,2007" ), "cl" ),
		new Array( "WI", "43.5", "-87.4",
					"<b>WPL Edgewater Generating Station, Sheboygan</b><br /> in Sheboygan county, WI<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2008&amp;site_id=643\" target=\"_blank\">2008</a> - 4 birds",
					new String( "2008" ), "sm" ),
		new Array( "WI", "44.3", "-87.6",
					"<b>WPS Pulliam Power Plant, Green Bay</b><br /> in Brown county, WI<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2009&amp;site_id=647\" target=\"_blank\">2009</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2008&amp;site_id=647\" target=\"_blank\">2008</a> - 1 birds",
					new String( "2009,2008" ), "sm" )
	);

function set_map_area( id )
{
	var area_select_obj = document.getElementById( id+'_area' );
	var selected_area = '';
	var year_select_obj = document.getElementById( id+'_year' );
	var selected_year = '';
	var area_index;
	var area_bounds;

	if ( isFinite( area_select_obj.selectedIndex ) && area_select_obj.selectedIndex >= 0 )
		selected_area = area_select_obj.options[ area_select_obj.selectedIndex ].value;
	if ( isFinite( year_select_obj.selectedIndex ) && year_select_obj.selectedIndex >= 0 )
		selected_year = year_select_obj.options[ year_select_obj.selectedIndex ].value;

	add_peregrine_markers( selected_area, selected_year );

	// Shift the center of the map to that area.
	area_bounds = create_GLatLngBounds_for_area( selected_area );
	map.setZoom( map.getBoundsZoomLevel( area_bounds ) );
	map.panTo( area_bounds.getCenter( ) );
}

function set_map_year( id )
{
	var area_select_obj = document.getElementById( id+'_area' );
	var selected_area = '';
	var year_select_obj = document.getElementById( id+'_year' );
	var selected_year = '';

	if ( isFinite( area_select_obj.selectedIndex ) && area_select_obj.selectedIndex >= 0 )
		selected_area = area_select_obj.options[ area_select_obj.selectedIndex ].value;
	if ( isFinite( year_select_obj.selectedIndex ) && year_select_obj.selectedIndex >= 0 )
		selected_year = year_select_obj.options[ year_select_obj.selectedIndex ].value;

	add_peregrine_markers( selected_area, selected_year );
}

function add_peregrine_markers( in_selected_area, in_selected_year )
{
	var site_index;
	var point;
	var use_icon;

	var sm_icon = new GIcon(G_DEFAULT_ICON);
	sm_icon.image = "http://midwestperegrine.org/db/images/Smokestack.png";

	var br_icon = new GIcon(G_DEFAULT_ICON);
	br_icon.image = "http://midwestperegrine.org/db/images/Bridge.png";

	var bl_icon = new GIcon(G_DEFAULT_ICON);

	var cl_icon = new GIcon(G_DEFAULT_ICON);
	cl_icon.image = "http://midwestperegrine.org/db/images/Cliff.png";

	map.clearOverlays( );
	for ( site_index = 0; site_index < site_data_arr.length; site_index++ )
	{
		if ( ( 'all' == in_selected_area || site_data_arr[ site_index ][ 0 ] == in_selected_area )
				&& ( 'all' == in_selected_year || site_data_arr[ site_index ][ 4 ].indexOf( in_selected_year ) != -1 ) )
		{
			point = new GLatLng( site_data_arr[ site_index ][ 1 ], site_data_arr[ site_index ][ 2 ] );
			if ( site_data_arr[ site_index ][ 5 ] == "sm" )
				use_icon = sm_icon;
			else if ( site_data_arr[ site_index ][ 5 ] == "br" )
				use_icon = br_icon;
			else if ( site_data_arr[ site_index ][ 5 ] == "bl" )
				use_icon = bl_icon;
			else if ( site_data_arr[ site_index ][ 5 ] == "cl" )
				use_icon = cl_icon;
			map.addOverlay( createMarker( point, site_data_arr[ site_index ][ 3 ], use_icon ) );
		}
	}
}
