// JavaScript Document
    function initialize() {
      if (GBrowserIsCompatible()) {
        var crossLayer = new GTileLayer(new GCopyrightCollection(""), 0, 15);
		var blueIcon = new GIcon(G_DEFAULT_ICON);
		crossLayer.getTileUrl =  function(tile, zoom) {
          return "./include/tile_crosshairs.png";
        }
        crossLayer.isPng = function() {return true;}
        var map = new GMap2(document.getElementById("map_canvas"),
            { size: new GSize(300,300) } );
		eval('var latlng = new GLatLng(' + coord + ')')
		blueIcon.iconSize = new GSize(20, 20)
		blueIcon.iconAnchor = new GPoint(20 >> 1, 20 >> 1);
		blueIcon.shadow = "http://rfemmr.org/pxl.gif";
		blueIcon.image = "http://rfemmr.org/stars/s3.png";
		markerOptions = { icon:blueIcon };
        map.setCenter(latlng, 6);
		map.setMapType(G_HYBRID_MAP);
		map.addOverlay(new GMarker(latlng,markerOptions));
        map.addControl(new GLargeMapControl());
        var mapControl = new GHierarchicalMapTypeControl();
        mapControl.clearRelationships();
        map.addControl(mapControl);
      }
    }
