document.write( '	<style>' );
document.write( '		#info_selector {' );
document.write( '			font-family: Arial, Helvetica, sans-serif;' );
document.write( '			color: #6F7CA8;' );
document.write( '		}' );
document.write( '		#info_container {' );
document.write( '			width: 375px;' );
document.write( '			border: 1px solid #000;' );
document.write( '			font-family: Arial, Helvetica, sans-serif;' );
document.write( '			color: #6F7CA8;' );
document.write( '			margin: auto;' );
document.write( '			padding: auto;' );
document.write( '		}' );
document.write( '		#info_container_top {' );
document.write( '			background-image: url(http://recycleoss.membersmanager.org/img/gradient.jpg);' );
document.write( '			background-repeat: repeat-x;' );
document.write( '			border-bottom: 1px solid #000;' );
document.write( '			text-align: right;' );
document.write( '			margin: 0;' );
document.write( '			padding: 0;' );
document.write( '		}' );
document.write( '		#info_container_name {' );
document.write( '			width: 375px;' );
document.write( '			font-size: 18px;' );
document.write( '			color: #FFF;' );
document.write( '			background-color: #6F7CA8;' );
document.write( '			border-bottom: 1px solid #000;' );
document.write( '			padding-bottom: 7px;' );
document.write( '			padding-top: 5px;' );
document.write( '			text-align: center;' );
document.write( '		}' );
document.write( '		#info_container_location {' );
document.write( '			font-size: 14px;' );
document.write( '			width: 375px;' );
document.write( '			padding-top: 5px;' );
document.write( '			padding-bottom: 7px;' );
document.write( '			line-height: 1.25em;' );
document.write( '			text-align: center;' );
document.write( '		}' );
document.write( '		#info_container_recycle_header {' );
document.write( '			font-size: 16px;' );
document.write( '			width: 375px;' );
document.write( '			color: #FFF;' );
document.write( '			background-color: #6F7CA8;' );
document.write( '			border-top: 1px solid #000;' );
document.write( '			border-bottom: 1px solid #000;' );
document.write( '			padding-top: 5px;' );
document.write( '			padding-bottom: 3px;' );
document.write( '			font-variant: small-caps;' );
document.write( '			font-weight: bold;' );
document.write( '			text-align: center;' );
document.write( '		}' );
document.write( '		#info_container_recycle {' );
document.write( '			font-size: 14px;' );
document.write( '			width: 375px;' );
document.write( '			padding-top: 5px;' );
document.write( '			padding-bottom: 5px;' );
document.write( '			text-align: center;' );
document.write( '		}' );
document.write( '		#info_container_material_header {' );
document.write( '			font-size: 16px;' );
document.write( '			color: #FFF;' );
document.write( '			width: 100%;' );
document.write( '			background-color: #6F7CA8;' );
document.write( '			font-style: italic;' );
document.write( '			font-weight: bold;' );
document.write( '			padding-top: 5px;' );
document.write( '			padding-bottom: 3px;' );
document.write( '			border-bottom: 1px solid #000;' );
document.write( '			border-top: 1px solid #000;' );
document.write( '			text-align: center;' );
document.write( '		}' );
document.write( '		#info_container_material {' );
document.write( '			font-size: 13px;' );
document.write( '			width: 100%;' );
document.write( '			font-family: Arial, Helvetica, sans-serif;' );
document.write( '			color: #6F7CA8;' );
document.write( '			padding-top: 5px;' );
document.write( '			text-align: center;' );
document.write( '		}' );
document.write( '		#info_container_material td {' );
document.write( '			font-size: 13px;' );
document.write( '			font-family: Arial, Helvetica, sans-serif;' );
document.write( '			color: #6F7CA8;' );
document.write( '		}' );
document.write( '	</style>' );
document.write( '	<script>' );
document.write( '		function show_area( show_id ) {' );
document.write( '			div = document.getElementById( \'info_\' + show_id );' );
document.write( '			div.style.display = "";' );
document.write( '		}' );
document.write( '		function hide_area( hide_id ) {' );
document.write( '			div = document.getElementById( \'info_\' + hide_id );' );
document.write( '			div.style.display = "none";' );
document.write( '		}' );
document.write( '		' );
document.write( '		function show_location_only(id)' );
document.write( '		{' );
document.write( '			hide_all();' );
document.write( '			if (typeof( nlocations[id]) == "undefined")' );
document.write( '				return;' );
document.write( '				' );
document.write( '			div = document.getElementById( \'tick_\' + nlocations[id] );' );
document.write( '			div.style.display = "";' );
document.write( '			show_area(nlocations[id]);' );
document.write( '		}' );
document.write( '		' );
document.write( '		function hide_all() {' );
document.write( '		}' );
document.write( '		' );
document.write( '		function show_all() {' );
document.write( '		}' );
document.write( '		' );
document.write( '		function show_location( location )' );
document.write( '		{' );
document.write( '			hide_all();' );
document.write( '			for (i = 0; i<locations[location].length;i++)' );
document.write( '			{' );
document.write( '				var div = document.getElementById( \'tick_\' + locations[location][i] );' );
document.write( '				div.style.display = "";	' );
document.write( '			}' );
document.write( '		}' );
document.write( '		' );
document.write( '		function show_class( show_this_class ) {' );
document.write( '			hide_all();' );
document.write( '			if ( show_this_class == 99999999 ) {' );
document.write( '				show_all();' );
document.write( '				return;' );
document.write( '			}' );
document.write( '			for (i=0;i<materials[show_this_class].length;i++)' );
document.write( '			{' );
document.write( '				div = document.getElementById( \'tick_\' + materials[show_this_class][i] );' );
document.write( '				div.style.display = "";' );
document.write( '			}' );
document.write( '		}' );
document.write( '' );
document.write( '		var materials = new Array();' );
document.write( '			materials[50] = new Array();' );
document.write( '			materials[76] = new Array();' );
document.write( '			materials[73] = new Array();' );
document.write( '			materials[66] = new Array();' );
document.write( '			materials[57] = new Array();' );
document.write( '			materials[39] = new Array();' );
document.write( '			materials[78] = new Array();' );
document.write( '			materials[59] = new Array();' );
document.write( '			materials[67] = new Array();' );
document.write( '			materials[68] = new Array();' );
document.write( '			materials[79] = new Array();' );
document.write( '			materials[61] = new Array();' );
document.write( '			materials[69] = new Array();' );
document.write( '			materials[58] = new Array();' );
document.write( '			materials[62] = new Array();' );
document.write( '			materials[70] = new Array();' );
document.write( '			materials[71] = new Array();' );
document.write( '			materials[77] = new Array();' );
document.write( '			materials[54] = new Array();' );
document.write( '			materials[60] = new Array();' );
document.write( '			materials[52] = new Array();' );
document.write( '			materials[53] = new Array();' );
document.write( '			materials[75] = new Array();' );
document.write( '			materials[55] = new Array();' );
document.write( '			materials[51] = new Array();' );
document.write( '			materials[56] = new Array();' );
document.write( '			materials[74] = new Array();' );
document.write( '			materials[72] = new Array();' );
document.write( '			materials[63] = new Array();' );
document.write( '			materials[64] = new Array();' );
document.write( '			materials[47] = new Array();' );
document.write( '			materials[49] = new Array();' );
document.write( '' );
document.write( 'var locations = new Array();' );
document.write( 'locations[0] = new Array();' );
document.write( 'locations[1] = new Array();' );
document.write( 'locations[2] = new Array();' );
document.write( 'locations[3] = new Array();' );
document.write( 'locations[4] = new Array();' );
document.write( 'locations[5] = new Array();' );
document.write( 'locations[6] = new Array();' );
document.write( 'locations[7] = new Array();' );
document.write( 'locations[8] = new Array();' );
document.write( 'locations[9] = new Array();' );
document.write( 'locations[10] = new Array();' );
document.write( 'locations[11] = new Array();' );
document.write( 'locations[12] = new Array();' );
document.write( 'locations[13] = new Array();' );
document.write( 'locations[14] = new Array();' );
document.write( 'locations[15] = new Array();' );
document.write( 'locations[16] = new Array();' );
document.write( 'locations[17] = new Array();' );
document.write( 'locations[18] = new Array();' );
document.write( 'locations[19] = new Array();' );
document.write( 'locations[20] = new Array();' );
document.write( 'locations[21] = new Array();' );
document.write( 'locations[22] = new Array();' );
document.write( 'locations[23] = new Array();' );
document.write( 'locations[24] = new Array();' );
document.write( 'locations[25] = new Array();' );
document.write( 'locations[26] = new Array();' );
document.write( 'locations[27] = new Array();' );
document.write( 'locations[28] = new Array();' );
document.write( 'locations[29] = new Array();' );
document.write( 'locations[30] = new Array();' );
document.write( 'locations[31] = new Array();' );
document.write( 'locations[32] = new Array();' );
document.write( 'locations[33] = new Array();' );
document.write( 'locations[34] = new Array();' );
document.write( 'locations[35] = new Array();' );
document.write( 'locations[36] = new Array();' );
document.write( 'locations[37] = new Array();' );
document.write( 'locations[38] = new Array();' );
document.write( 'locations[39] = new Array();' );
document.write( 'locations[40] = new Array();' );
document.write( 'locations[41] = new Array();' );
document.write( 'locations[42] = new Array();' );
document.write( 'locations[43] = new Array();' );
document.write( 'locations[44] = new Array();' );
document.write( 'locations[45] = new Array();' );
document.write( 'locations[46] = new Array();' );
document.write( 'locations[47] = new Array();' );
document.write( 'locations[48] = new Array();' );
document.write( 'locations[49] = new Array();' );
document.write( 'locations[50] = new Array();' );
document.write( 'locations[51] = new Array();' );
document.write( 'locations[52] = new Array();' );
document.write( 'locations[53] = new Array();' );
document.write( 'locations[54] = new Array();' );
document.write( 'locations[55] = new Array();' );
document.write( 'locations[56] = new Array();' );
document.write( 'locations[57] = new Array();' );
document.write( 'locations[58] = new Array();' );
document.write( 'locations[59] = new Array();' );
document.write( 'locations[60] = new Array();' );
document.write( 'locations[61] = new Array();' );
document.write( 'locations[62] = new Array();' );
document.write( '' );
document.write( 'var nlocations = new Array();' );
document.write( '' );
document.write( '	</script>' );
document.write( '	<div style="position: relative; width: px; height: px; margin: auto; padding: 0;">' );
document.write( '		<img width="" height="" src="http://recycleoss.membersmanager.org/includes/img/" border="0" style="z-index: 5;" onClick="this.blur();" >' );
document.write( '	</div>' );

