//<![CDATA[
function load() {
	if (GBrowserIsCompatible()) 
	{
		var map = new GMap2(document.getElementById("googleMap"));
		var geocoder = new GClientGeocoder();
		map.addControl(new GSmallMapControl());
		
		var address = "1456 Wallace Road, Oakville, ON, Canada";
		var tabInfo     = "<br /> GL Chemtec International Ltd. <br />"
		+ "Head Office: <br /><br />"
		+ address;
		// Our info window content
		var infoTabs = [new GInfoWindowTab("Tab #1", tabInfo)];		
		
		if (geocoder)
		{		
			geocoder.getLatLng( address, function(point) 
										 {
										 	if (!point) {
												alert(address + " not found");
											} else {
												map.setCenter(point, 13);
												var marker = new GMarker(point);
												GEvent.addListener( marker, "mouseover", function() {marker.openInfoWindowTabsHtml(infoTabs); } );
												map.setCenter(point, 13);
												map.addOverlay(marker);
											}
										} 
							 	);
		}
	}
}
//]]>