   var geocoder;
   var map;

   var address = "<p>Awards ceremony location</p><strong>Hilton Glasgow</strong><p>1 William Street, Glasgow<br /> G3 8HT</p>";

   function initialize() {
      if (GBrowserIsCompatible()) {
      
      var homeIcon = new GIcon(G_DEFAULT_ICON);
      //homeIcon.image = "http://10.0.0.2/scottisheventawards/images/version2/google-home.png";
      //homeIcon.iconSize = new GSize(32, 32);
      markerOptions = { icon:homeIcon };
      
      var map = new GMap2(document.getElementById("map_canvas"));
      
      map.setCenter(new GLatLng(55.861445,-4.2689), 13);
      
      var point = new GLatLng(55.861424,-4.2689);
      var mapControl = new GMapTypeControl();
      
      map.removeMapType(G_HYBRID_MAP);
      map.removeMapType(G_SATELLITE_MAP);
      
	  map.addControl(mapControl);
	  map.addControl(new GSmallZoomControl());
	  
      map.setZoom(16);
      map.addOverlay(new GMarker(point, markerOptions));
	  map.openInfoWindowHtml(point, address) ;
	  
      }
    }