﻿//<![CDATA[
  function load() {
  if (GBrowserIsCompatible()) {
  //var map = new GMap2(document.getElementById("map"));
  //map.setCenter(new GLatLng(51.46683,-3.20083),15);
  //map.openInfoWindowHtml(map.getCenter(), '<div style="width:240px">Vellacine Limited<br />Hadfield Road<br />Leckwith,<br />Cardiff<br />CF11 8AQ<\/div>');
    function createMarker(point,html) {
        var marker = new GMarker(point);
        GEvent.addListener(marker, "click", function() {
        marker.openInfoWindowHtml(html);
        });
        return marker;
   }

    // Display the map, with some controls and set the initial location 
    var map = new GMap2(document.getElementById("map"));
    map.addControl(new GLargeMapControl());
    map.addControl(new GMapTypeControl());
    map.setCenter(new GLatLng(51.46683,-3.20083),15);
        
    // Set up three markers with info windows 
    var point = new GLatLng(51.46683,-3.20083);
    var marker = createMarker(point,'<div style="width:240px">Vellacine Limited<br />Hadfield Road<br />Leckwith,<br />Cardiff<br />CF11 8AQ<\/div>')
    map.addOverlay(marker);
  
    }
}
//]]>
