﻿// JScript File
function load() {
  if (GBrowserIsCompatible()) {
    var map = new GMap2(document.getElementById("map"));
	map.addControl(new GLargeMapControl());
    showMap(map);
  }
}

    
// Creates a marker at the given point with the given number label
function createMarker(point, content) {
  var marker = new GMarker(point);
  GEvent.addListener(marker, "click", function() {
	marker.openInfoWindowHtml(content);
  });
  return marker;
}
