//<![CDATA[	// global arrays to hold copies of the markers and html    var gmarkers = [];    var htmls = [];    // global "map" variable    var map;    // This function picks up the click in the html body and opens the corresponding info window in the map    function myclick(i) {    	gmarkers[i].openInfoWindowHtml(htmls[i]);    }	function onLoad() {		if (GBrowserIsCompatible()) {			var i = 0;			// Create an associative array of GIcons()			var gicons = [];				gicons["red"] = new GIcon(G_DEFAULT_ICON, "graphics/icon-red.png");				gicons["green"] = new GIcon(G_DEFAULT_ICON, "graphics/icon-green.png");			// A function to create the marker and set up the event window			function createMarker(point,html,icon) {				var marker = new GMarker(point, gicons[icon]);					GEvent.addListener(marker, "click", function() {					  marker.openInfoWindowHtml(html);					});					// save the info we need to use later for the html links					gmarkers[i] = marker;					htmls[i] = html;					i++;				return marker;			}			// Create the map and set controls			var map = new GMap2(document.getElementById("map"));				map.addControl(new GSmallMapControl());				map.addControl(new GMapTypeControl());				map.setCenter(new GLatLng(40.74712,-74.048406), 15);			// Set up markers with info windows			// Shimada Mizutani Patent Office			var point = new GLatLng(40.74712,-74.048406);			var marker = createMarker(point,'<h3>Central Avenue Special Improvement<br />District Management Corporation</h3><p>366 Central Ave. Suite 201, Jersey City, NJ 07307</p>','green')				map.addOverlay(marker);				marker.openInfoWindowHtml('<h3>Central Avenue Special Improvement<br />District Management Corporation</h3><p>366 Central Ave. Suite 201, Jersey City, NJ 07307</p>')		}		else {		  alert("Sorry, but your browser is not compatible with the Google map used on this page.");		}	}		// This Javascript is based on code provided by the    // Blackpool Community Church Javascript Team    // http://www.commchurch.freeserve.co.uk/       // http://www.econym.demon.co.uk/googlemaps/	    //]]>