// JavaScript Document
 //<![CDATA[
    function loadmap() {
      if (GBrowserIsCompatible()) {
        var map = new GMap2(document.getElementById("map"));
		map.addControl(new GLargeMapControl());
		map.addControl(new GMapTypeControl());
		map.addControl(new GScaleControl ());
		
		var location = new GLatLng(34.007115, -117.951509);
        map.setCenter(location, 13);
		
		//add a marker on the map
		map.addOverlay(new GMarker(location));
		
		//add an information windows on the map
		var infowindow = '<strong>Hensim USA</strong><br>16257 E Gale Ave<br>City of Industry, CA 91745<br>United States';
		map.openInfoWindow(map.getCenter(), infowindow);
      }
    }
    //]]>

