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(
		"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.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=2006&amp;site_id=77\" target=\"_blank\">2006</a> - 4 birds",
					new String( "2006" ), "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=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( "2007,2006,2005,2004,2003,2002" ), "sm" ),
		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=2008&amp;site_id=122\" target=\"_blank\">2008</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( "2008,2006,2005,2004,2003,2002,2001,2000,1999,1998" ), "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=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( "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", "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=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( "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",
					new String( "" ), "bl" ),
		new Array( "IN", "41.6735", "-87.4337",
					"<b>Mittal Steel Lime Plants - East Chicago</b><br /> in Lake county, IN",
					new String( "" ), "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=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( "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=2006&amp;site_id=103\" target=\"_blank\">2006</a> - 5 birds",
					new String( "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</b><br /> in St. Joseph county, IN<br />Birds banded here by year:<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( "2008,2007,2006,2005,2004,2003,0" ), "bl" ),
		new Array( "IN", "41.615", "-87.3216666",
					"<b>U.S. Steel, Gary</b><br /> in Lake county, IN<br />Birds banded here by year:<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( "2007,2006" ), "bl" ),
		new Array( "IN", "41.6088", "-87.3072",
					"<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=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( "2008,2007" ), "bl" ),
		new Array( "KY", "38 03' 12&quot;", "-85.91",
					"<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 Hardin county, KY<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2007&amp;site_id=144\" target=\"_blank\">2007</a> - 2 birds",
					new String( "2007" ), "sm" ),
		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.9988888", "-82.4236111",
					"<b>Blue Water Bridge</b><br />, MI<br />Birds banded here by year:<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( "2007,2006" ), "br" ),
		new Array( "MI", "42.9836111", "-83.4425",
					"<b>Blue Water Bridge</b><br /> in St. Clair county, MI",
					new String( "" ), "br" ),
		new Array( "MI", "41.5", "-83.2",
					"<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=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( "2007,2006,2003,2001,1999,1998,1997" ), "bl" ),
		new Array( "MI", "41.8919444", "-83.3513888",
					"<b>DTE Monroe Power Plant</b><br /> in Monroe county, MI",
					new String( "" ), "sm" ),
		new Array( "MI", "42.3688888", "-83.0763888",
					"<b>Fisher Building</b><br /> in Wayne county, MI",
					new String( "" ), "bl" ),
		new Array( "MI", "43.0", "-86.2",
					"<b>Grand Haven L. and P., 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=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( "2007,2006,2005,2004,2003,2002,2001" ), "sm" ),
		new Array( "MI", "42.596773", "82.8783",
					"<b>Mt. Clemens</b><br /> in Macomb county, MI",
					new String( "" ), "bl" ),
		new Array( "MI", "42.2", "-83.2",
					"<b>New Center, 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", "43.07", "-86.2338888",
					"<b>Port Sheldon JH Power Plant</b><br /> in Ottawa county, MI<br />Birds banded here by year:<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( "2007,2006,2004" ), "bl" ),
		new Array( "MI", "42.4169444", "-83.1427777",
					"<b>Univ. of Detroit Mercy</b><br /> in Wayne county, MI",
					new String( "" ), "bl" ),
		new Array( "MI", "42.2", "-83",
					"<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",
					new String( "" ), "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=2007&amp;site_id=142\" target=\"_blank\">2007</a> - 3 birds",
					new String( "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=2008&amp;site_id=141\" target=\"_blank\">2008</a> - 4 birds",
					new String( "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=2008&amp;site_id=157\" target=\"_blank\">2008</a> - 3 birds",
					new String( "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.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=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( "2008,2007,2006,2005,2004,2001,2000,1999,1998,1997,1996,1995,1993,0" ), "sm" ),
		new Array( "MN", "46.5", "-92",
					"<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=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( "2007,2005,2004,2003,2002,1999,1997,1996,1995,1994,1993" ), "sm" ),
		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=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( "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=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( "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=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( "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.1", "-91.2",
					"<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=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( "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=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( "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=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( "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=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( "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=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( "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", "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=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( "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=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( "2008,2006" ), "cl" ),
		new Array( "MN", "46.7866666", "-92.09",
					"<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=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> - 4 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( "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", "48.0", "-89.4",
					"<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=2008&amp;site_id=163\" target=\"_blank\">2008</a> - 1 birds",
					new String( "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=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( "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.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=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( "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=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( "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=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( "2007,2006,2005,2004" ), "cl" ),
		new Array( "MN", "42.5966666", "-82.8780555",
					"<b>Macomb County</b><br /> in Macomb county, MN",
					new String( "" ), "bl" ),
		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=2006&amp;site_id=31\" target=\"_blank\">2006</a> - 2 birds",
					new String( "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=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( "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=2006&amp;site_id=69\" target=\"_blank\">2006</a> - 4 birds",
					new String( "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=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( "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.3", "-90.4",
					"<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=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( "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=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( "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=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( "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=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( "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=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( "2008,2007,2006,2005,2004,2000,1999,1998,1997" ), "bl" ),
		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=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( "2008,2006,2003,2002" ), "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=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( "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=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( "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", "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=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( "2008,2006,2005,2004,2003,2001,1999,1998,1997,1996,1995,1994,1993,1992" ), "sm" ),
		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",
					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=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=2006&amp;site_id=70\" target=\"_blank\">2006</a> - 2 birds",
					new String( "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=2007&amp;site_id=76\" target=\"_blank\">2007</a> - 3 birds",
					new String( "2007" ), "br" ),
		new Array( "MN", "47.2", "-91.1",
					"<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.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=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( "2008,2006,2005,2004,2003,2002,2001,1999,1997" ), "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=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> - 4 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( "2008,2007,2006,2005,2004,2003,2001" ), "bl" ),
		new Array( "NE", "41.1", "-95.5",
					"<b>Woodmen Tower, Omaha</b><br /> in Douglas county, NE<br />Birds banded here by year:<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( "2007,2006" ), "bl" ),
		new Array( "OH", "41.3", "-81.4",
					"<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=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( "2007,2006" ), "bl" ),
		new Array( "OH", "41.3", "-81.4",
					"<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=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( "2007,2006" ), "bl" ),
		new Array( "OH", "41.4", "-83.3",
					"<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=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( "2008,2007,2006,2004" ), "bl" ),
		new Array( "OH", "41.3", "-81.4",
					"<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=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( "2006,2005,2004,2003,2002,2001,2000,1999" ), "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=2007&amp;site_id=90\" target=\"_blank\">2007</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2006&amp;site_id=90\" target=\"_blank\">2006</a> - 3 birds",
					new String( "2007,2006" ), "br" ),
		new Array( "OH", "41.3", "-81.4",
					"<b>LTV Steel, Cleveland</b><br /> in Cuyahoga county, OH<br />Birds banded here by year:<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( "2007,2006" ), "bl" ),
		new Array( "OH", "39.0", "-84.3",
					"<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=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( "2007,2006" ), "bl" ),
		new Array( "OH", "40.0", "-83",
					"<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=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( "2006,2005,2001,2000,1998,1997,1996,1995,1994" ), "bl" ),
		new Array( "OH", "41.3", "-81.4",
					"<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=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( "2007,2006" ), "bl" ),
		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=2006&amp;site_id=74\" target=\"_blank\">2006</a> - 1 birds",
					new String( "2006" ), "br" ),
		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=2007&amp;site_id=147\" target=\"_blank\">2007</a> - 4 birds",
					new String( "2007" ), "cl" ),
		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=2008&amp;site_id=64\" target=\"_blank\">2008</a> - 1 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( "2008,2007,2006,2005,2003,2002,2001" ), "sm" ),
		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=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( "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=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( "2008,2007,2006,2005,2004,2003,2002,2001,2000,1999,1998" ), "sm" ),
		new Array( "WI", "43.0", "-87.5",
					"<b>Froedtert Malt, Milwaukee</b><br /> in Milwaukee county, WI<br />Birds banded here by year:<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( "2008,2007,2006" ), "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.3", "-87.5",
					"<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=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( "2008,2007,2006" ), "bl" ),
		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.4869444", "-91.0880277",
					"<b>Lynxville Cliff, Lynxville</b><br /> in Crawford county, WI<br />Birds banded here by year:<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( "2006,2005,2003" ), "cl" ),
		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=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( "2008,2007,2006,2005,2004,2003,2002,2001,1987" ), "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=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( "2008,2007,2006" ), "bl" ),
		new Array( "WI", "42.3", "-87.5",
					"<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=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( "2008,2007,2006,2005,2004,2003,2002,2001,2000,1999,1998,1997" ), "sm" ),
		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=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( "2007,2006" ), "bl" ),
		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=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( "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=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( "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", "41.3", "-93.3",
					"<b>American Republic, Des Moines</b><br /> in Polk county, IA",
					new String( "" ), "bl" ),
		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", "41.5", "-91.3",
					"<b>Firstar 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=2007&amp;site_id=19\" target=\"_blank\">2007</a> - 5 birds",
					new String( "2007" ), "bl" ),
		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",
					new String( "" ), "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=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( "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=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",
					new String( "2008,2007,2006" ), "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",
					new String( "" ), "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=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( "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",
					new String( "" ), "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=2008&amp;site_id=81\" target=\"_blank\">2008</a> - 4 birds",
					new String( "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",
					new String( "" ), "bl" ),
		new Array( "KS", "39.0", "-96.5",
					"<b>Junction City</b><br /> in Geary county, KS",
					new String( "" ), "" ),
		new Array( "KS", "39.0", "-95.4",
					"<b>Kansas Power and Light, Topeka</b><br /> in Shawnee county, KS",
					new String( "" ), "bl" ),
		new Array( "KY", "37.4", "-84.4",
					"<b>Burgin</b><br /> in Mercer county, KY",
					new String( "" ), "bl" ),
		new Array( "KY", "38.2", "-85.5",
					"<b>I-65 Ohio River Bridge, Louisville</b><br /> in Jefferson county, KY",
					new String( "" ), "br" ),
		new Array( "KY", "38.0", "-84.3",
					"<b>Lexington</b><br /> in Fayette county, KY",
					new String( "" ), "bl" ),
		new Array( "MB", "49.3", "-100",
					"<b>Brandon</b><br />, MB",
					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=2007&amp;site_id=166\" target=\"_blank\">2007</a> - 4 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2006&amp;site_id=166\" target=\"_blank\">2006</a> - 2 birds",
					new String( "2007,2006" ), "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>Radisson Hotel / Delta Winnipeg, Winnipeg</b><br />, MB<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2007&amp;site_id=170\" target=\"_blank\">2007</a> - 3 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2006&amp;site_id=170\" target=\"_blank\">2006</a> - 3 birds",
					new String( "2007,2006" ), "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", "42.2", "-83",
					"<b>National Steel, River Rouge</b><br /> in Wayne county, MI",
					new String( "" ), "bl" ),
		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",
					new String( "" ), "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",
					new String( "" ), "bl" ),
		new Array( "MO", "38.4", "-90.1",
					"<b>Southwestern Bell, 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=2008&amp;site_id=391\" target=\"_blank\">2008</a> - 4 birds",
					new String( "2008" ), "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> - 4 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", "39.5", "-84.2",
					"<b>Liberty Bank, 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=2008&amp;site_id=468\" target=\"_blank\">2008</a> - 3 birds",
					new String( "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=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( "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",
					new String( "" ), "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=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( "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=2008&amp;site_id=486\" target=\"_blank\">2008</a> - 2 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( "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",
					new String( "" ), "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=2008&amp;site_id=509\" target=\"_blank\">2008</a> - 2 birds<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2007&amp;site_id=509\" target=\"_blank\">2007</a> - 3 birds",
					new String( "2008,2007" ), "cl" ),
		new Array( "ON", "48.2", "-89.2",
					"<b>Mount McRae</b><br />, ON<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2006&amp;site_id=510\" target=\"_blank\">2006</a> - 4 birds",
					new String( "2006" ), "cl" ),
		new Array( "ON", "48.9639323284", "-88.2431801935",
					"<b>Nipigon River Mouth</b><br />, ON",
					new String( "" ), "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=2006&amp;site_id=515\" target=\"_blank\">2006</a> - 4 birds",
					new String( "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=2006&amp;site_id=545\" target=\"_blank\">2006</a> - 3 birds",
					new String( "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> - 1 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=2007&amp;site_id=551\" target=\"_blank\">2007</a> - 2 birds",
					new String( "2007" ), "cl" ),
		new Array( "ON", "48.2", "-89.1",
					"<b>Squaw Bay</b><br />, ON<br />Birds banded here by year:<br /><a href=\"http://midwestperegrine.org/db/results.php?year=2006&amp;site_id=552\" target=\"_blank\">2006</a> - 3 birds",
					new String( "2006" ), "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=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( "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=2007&amp;site_id=640\" target=\"_blank\">2007</a> - 4 birds",
					new String( "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> - 1 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",
					new String( "" ), "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_