
function createMarker(point,html) {
    var marker = new GMarker(point);
    GEvent.addListener(marker, "click", function() {
            marker.openInfoWindowHtml(html);
            });
    return marker;
}

function populateMap(){
    var map = new GMap(document.getElementById("map"));
    map.addControl(new GLargeMapControl());
    map.addControl(new GMapTypeControl());
    map.addControl(new GScaleControl());
    map.centerAndZoom(new GPoint(-7.932129,53.429174), 10);
marker = createMarker(new GPoint(-6.2157,53.3072), "<h3>Belfield</h3><ul><li><a href=\"http://sindar.net/iuaa/results/venue/1/\">Venue Details</a></li></ul>");
map.addOverlay(marker);
marker = createMarker(new GPoint(-8.5371,51.8845), "<h3>Bishopstown</h3><ul><li><a href=\"http://sindar.net/iuaa/results/venue/2/\">Venue Details</a></li></ul>");
map.addOverlay(marker);
marker = createMarker(new GPoint(-8.4775,51.9860), "<h3>Carraig Na bhFear</h3><ul><li><a href=\"http://sindar.net/iuaa/results/venue/3/\">Venue Details</a></li></ul>");
map.addOverlay(marker);
marker = createMarker(new GPoint(-6.6699,55.1386), "<h3>Coleraine</h3><ul><li><a href=\"http://sindar.net/iuaa/results/venue/4/\">Venue Details</a></li></ul>");
map.addOverlay(marker);
marker = createMarker(new GPoint(-8.4735,51.8979), "<h3>Cork</h3><ul><li><a href=\"http://sindar.net/iuaa/results/venue/5/\">Venue Details</a></li></ul>");
map.addOverlay(marker);
marker = createMarker(new GPoint(-9.0729,53.2940), "<h3>Dangan</h3><ul><li><a href=\"http://sindar.net/iuaa/results/venue/6/\">Venue Details</a></li></ul>");
map.addOverlay(marker);
marker = createMarker(new GPoint(-8.6273,52.6632), "<h3>Limerick</h3><ul><li><a href=\"http://sindar.net/iuaa/results/venue/7/\">Venue Details</a></li></ul>");
map.addOverlay(marker);
marker = createMarker(new GPoint(-5.9675,54.5486), "<h3>Mary Peters</h3><ul><li><a href=\"http://sindar.net/iuaa/results/venue/8/\">Venue Details</a></li></ul>");
map.addOverlay(marker);
marker = createMarker(new GPoint(-8.1945,52.8520), "<h3>Nenagh Olympic Stadium</h3><ul><li><a href=\"http://sindar.net/iuaa/results/venue/9/\">Venue Details</a></li></ul>");
map.addOverlay(marker);
marker = createMarker(new GPoint(-6.5976,53.3810), "<h3>NUI Maynooth</h3><ul><li><a href=\"http://sindar.net/iuaa/results/venue/10/\">Venue Details</a></li></ul>");
map.addOverlay(marker);
marker = createMarker(new GPoint(-6.3180,53.3503), "<h3>Phoenix Park</h3><ul><li><a href=\"http://sindar.net/iuaa/results/venue/11/\">Venue Details</a></li></ul>");
map.addOverlay(marker);
marker = createMarker(new GPoint(-8.5628,52.6725), "<h3>Plassey</h3><ul><li><a href=\"http://sindar.net/iuaa/results/venue/12/\">Venue Details</a></li></ul>");
map.addOverlay(marker);
marker = createMarker(new GPoint(-6.2442,53.4013), "<h3>Santry</h3><ul><li><a href=\"http://sindar.net/iuaa/results/venue/13/\">Venue Details</a></li></ul>");
map.addOverlay(marker);
marker = createMarker(new GPoint(-6.2684,53.3818), "<h3>St. Claires</h3><ul><li><a href=\"http://sindar.net/iuaa/results/venue/14/\">Venue Details</a></li></ul>");
map.addOverlay(marker);
marker = createMarker(new GPoint(-8.5019,51.8947), "<h3>Mardyke</h3><ul><li><a href=\"http://sindar.net/iuaa/results/venue/15/\">Venue Details</a></li></ul>");
map.addOverlay(marker);
marker = createMarker(new GPoint(-6.2239,54.7143), "<h3>Antrim Forum</h3><ul><li><a href=\"http://sindar.net/iuaa/results/venue/23/\">Venue Details</a></li></ul>");
map.addOverlay(marker);
marker = createMarker(new GPoint(-6.2541,53.3428), "<h3>College Park</h3><ul><li>Trinity College Dublin, Dublin 2, Ireland</li><li>City-center venue</li><li><a href=\"http://sindar.net/iuaa/results/venue/28/\">Venue Details</a></li></ul>");
map.addOverlay(marker);
marker = createMarker(new GPoint(-6.2556,53.4018), "<h3>Santry Playing Fields</h3><ul><li>TCD's sports ground</li><li><a href=\"http://sindar.net/iuaa/results/venue/37/\">Venue Details</a></li></ul>");
map.addOverlay(marker);
marker = createMarker(new GPoint(-6.2820,53.3559), "<h3>Grange Gorman</h3><ul><li><a href=\"http://sindar.net/iuaa/results/venue/39/\">Venue Details</a></li></ul>");
map.addOverlay(marker);
marker = createMarker(new GPoint(-6.2185,53.3404), "<h3>Irishtown Stadium</h3><ul><li>Irishtown, Dublin 4</li><li><a href=\"http://sindar.net/iuaa/results/venue/43/\">Venue Details</a></li></ul>");
map.addOverlay(marker);
marker = createMarker(new GPoint(-5.9121,54.5868), "<h3>Cherryvale</h3><ul><li>Ravenhill Rd, Belfast, BT6 8GJ</li><li>Former QUB sports ground 1920 - 1967.</li><li><a href=\"http://sindar.net/iuaa/results/venue/46/\">Venue Details</a></li></ul>");
map.addOverlay(marker);

}

window.onload = populateMap;
