strList="
St Mary of the Angels (0 miles)
Zoom on map | View full information
St Mary of the Angels (0 miles)
Zoom on map | View full information
St Theresa`s School (2.7 miles)
Zoom on map | View full information
St Teresa`s Preparatory School (2.7 miles)
Zoom on map | View full information
Cranmore Preparatory School (2.9 miles)
Zoom on map | View full information
St Augustine`s Abbey (3.8 miles)
Zoom on map | View full information
St Augustine`s Abbey 2 (3.8 miles)
Zoom on map | View full information
";
function showResults()
{
document.getElementById("mapList").style.display="block";
}
var records = new Array(new Array('St Mary of the Angels (34823-33713)',51.21999,-0.441789,'ParishChurch'),new Array('St Mary of the Angels (33683-32748)',51.21999,-0.441789,'ParishChurch'),new Array('St Theresa`s School (38744-36851)',51.247967,-0.39922,'School'),new Array('St Teresa`s Preparatory School (38783-36889)',51.247967,-0.39922,'School'),new Array('Cranmore Preparatory School (38745-36856)',51.261062,-0.450864,'School'),new Array('St Augustine`s Abbey (71304-70915)',51.2109531,-0.5294147,'ParishChurch'),new Array('St Augustine`s Abbey 2 (65938-75731)',51.209896,-0.528315,'ParishChurch'),new Array('St Augustine`s Abbey (71304-70912)',51.2109531,-0.5294147,'ParishChurch'),new Array('Our Lady of Sorrows (65953-70927)',51.276259,-0.3963392,'ParishChurch'),new Array('St Pius X (34871-33714)',51.2443555,-0.539107400000034,'Church'),new Array('St Pius X (34871-33737)',51.2443555,-0.539107400000034,'Church'),new Array('St Joseph`s (65948-70923)',51.225153,-0.336696,'ParishChurch'),new Array('St Thomas Of Canterbury School (38779-36885)',51.244128,-0.541808,'School'),new Array('St. Joseph`s School (33290-33026)',51.229017,-0.335912,'School'),new Array('St Joseph`s School (38750-74974)',51.152181,-0.481851,'School'),new Array('St Mary (34915-33759)',51.2461619,-0.5550501,'Church'),new Array('St Mary (34915-33714)',51.2461619,-0.5550501,'Church'),new Array('St Thomas More (33405-70915)',51.193333,-0.55655,'ParishChurch'),new Array('Greccio Convent (71074-75062)',51.2348258,-0.5652896,'Other'),new Array('St Joseph (34825-33714)',51.238608,-0.568126,'ParishChurch'),new Array('St Cuthbert Mayne Catholic Primary School (38771-36877)',51.14333,-0.482399,'School'),new Array('Jesus Christ the Redeemer of Mankind (6219-70915)',51.14333,-0.482399,'ParishChurch'),new Array('St Edward the Confessor (34935-33714)',51.271682,-0.5562921,'Church'),new Array('The Holy Spirit (34813-33708)',51.290327,-0.356128,'ParishChurch'),new Array('The Holy Spirit (6243-70927)',51.2902993,-0.3567733,'Church'),new Array('St Edward the Confessor (34935-33769)',51.271682,-0.5562921,'Church'),new Array('St John`s (C of E) (65954-33712)',51.1953076,-0.6038355,'Other'),new Array('St John`s (C of E) (65954-70930)',51.1953076,-0.6038355,'Other'),new Array('St Joseph`s Catholic Primary School (38767-36873)',51.251192,-0.601108,'School'),new Array('Rydes Hill Preparatory And Nursery School (38782-36888)',51.251536,-0.602115,'School'),new Array('Our Lady and St Peter (34859-33731)',51.299803,-0.324259,'ParishChurch'),new Array('Parish Office (71051-70913)',51.3291729,-0.4122377,'Other'),new Array('St John The Baptist School (38780-36886)',51.308073,-0.549725,'School'),new Array('St Edmund`s Catholic Primary School (38770-36876)',51.17726,-0.605235,'School'),new Array('The Sacred Heart (65939-70913)',51.32952,-0.413793,'ParishChurch'),new Array('St. Peter`s School (33299-33035)',51.302678,-0.317785,'School'),new Array('St Edmund, King and Martyr (34821-33712)',51.183814,-0.614953,'ParishChurch'),new Array('Clareville Community (71221-75061)',51.1882843,-0.618454,'Other'),new Array('Clareville Community (71221-75587)',51.1882843,-0.618454,'Other'),new Array('Parish Office (34960-33781)',51.3187423,-0.543547799999942,'Other'),new Array('St Dunstan (34959-33781)',51.3187423,-0.543547799999942,'ParishChurch'),new Array('Scalabrini Community House (71057-75306)',51.3186921,-0.5515208,'Other'),new Array('Scalabrini Community House (71057-75200)',51.3186921,-0.5515208,'Other'),new Array('St. Dunstan`s School (33305-33041)',51.319903,-0.54651,'School'),new Array('Notre Dame Preparatory School (71054-36840)',51.3416588,-0.4251921,'School'),new Array('Notre Dame School (38743-36839)',51.342216,-0.424353,'School'),new Array('The Marist School (33303-33039)',51.335321,-0.509,'School'),new Array('Our Lady Help of Christians (34949-33776)',51.338026,-0.505984,'ParishChurch'),new Array('St Michael (34753-33678)',51.31254,-0.300809,'ParishChurch'),new Array('St Joseph (34877-33740)',51.172593,-0.649706,'ParishChurch'));
// var IMAGES = [ "parishChurchMarker", "ChurchMarker", "PresbyteryMarker", "OtherPresbyteryMarker", "SchoolMarker", "HallMarker" ];
// var ICONS = [];
var markers = []; // declared EXTERNALLY
// var map = null;
// var mgr = null;
// var mgr2 = null;
// var mgr3 = null;
function initialize() {
var map = new google.maps.Map(
document.getElementById('map_canvas'), {
center: new google.maps.LatLng(records[0][1],records[0][2]),
zoom: 13,
mapTypeId: google.maps.MapTypeId.ROADMAP
});
var markerName;
for (var rows=0; rows < 8; rows++)
{
markerName=records[rows][3];
if(markerName=="ParishChurch")
markerName="Parish-Church"
var marker = new google.maps.Marker({
animation: google.maps.Animation.DROP,
position: new google.maps.LatLng(records[rows][1],records[rows][2]),
map: map, icon: "https://www.catholicdirectory.org/Pictures/map/" + markerName + "-Marker.png",
title: records[rows][0]
});
var infowindow = new google.maps.InfoWindow();
google.maps.event.addListener(marker, 'click', function() {
load_content(map, this, infowindow);
});
markers.push(marker);
}
}
function load_content(map,marker,infowindow){
$.ajax({
url: 'mapinfowindow.asp?var1='+marker.title,
success: function(data){
infowindow.setContent(""+data+"
");
infowindow.open(map, marker);
}
});
}
function launchInfoWindow(x) {
// window.scroll(0, 0);
// markers[x].setMap(map);
google.maps.event.trigger(markers[x], "click");
}
google.maps.event.addDomListener(window, 'load', initialize);
function loadPage(a)
{
if(document.getElementById("frame_"+a).style.display=="none")
{
document.getElementById("tab_"+a).className="tab_selected";
document.getElementById("frame_"+a).style.display="block";
for (var i=0;i<3;i++)
{
if(i!=a)
{
document.getElementById("tab_"+i).className="tab"
document.getElementById("frame_"+i).style.display="none";
}
}
}
}
function sendEmail(a,b)
{
document.getElementById("CCToEmailID").value=a;
document.getElementById("CCEmailName").innerText=b;
document.getElementById('CCEmailWindow').style.display='block';
}
//