strList="
St Mary`s RC Primary School (0 miles)
Zoom on map | View full information
St Thomas More RC College School (0.1 miles)
Zoom on map | View full information
St Mary (Our Lady of Sorrows) (0.1 miles)
Zoom on map | View full information
St John Fisher RC Primary School (1 miles)
Zoom on map | View full information
St John Fisher (1 miles)
Zoom on map | View full information
Holy Family (1.7 miles)
Zoom on map | View full information
St Paul Church (1.8 miles)
Zoom on map | View full information
";
function showResults()
{
document.getElementById("mapList").style.display="block";
}
var records = new Array(new Array('St Mary`s RC Primary School (39019-37125)',53.452622,-2.113516,'School'),new Array('St Thomas More RC College School (39026-37132)',53.451093,-2.114325,'School'),new Array('St Mary (Our Lady of Sorrows) (57151-63253)',53.452224,-2.1123,'ParishChurch'),new Array('St John Fisher RC Primary School (39022-74618)',53.443038,-2.09547,'School'),new Array('St John Fisher (57153-63253)',53.439733,-2.102599,'ParishChurch'),new Array('Holy Family (57155-63254)',53.452165,-2.154465,'ParishChurch'),new Array('St Paul Church (59758-32777)',53.456107,-2.069973,'ParishChurch'),new Array('St Mary`s School (38185-36289)',53.467617,-2.07647,'School'),new Array('St Anne`s RC Primary School (39024-37130)',53.472271,-2.146562,'School'),new Array('St Paul`s School (38194-36298)',53.457933,-2.067777,'School'),new Array('All Saints School (38216-36320)',53.471151,-2.07518,'School'),new Array('St Mary Church (59738-32781)',53.479311,-2.089826,'ParishChurch'),new Array('St Anne (57265-63309)',53.472901,-2.152093,'ParishChurch'),new Array('Sacred Heart Primary School (38926-37032)',53.458488,-2.163322,'School'),new Array('St Joseph (57399-63376)',53.438356,-2.160081,'ParishChurch'),new Array('St Joseph`s RC (39013-37119)',53.438455,-2.161739,'School'),new Array('St Bernadette Church (59675-32786)',53.423952,-2.136373,'ParishChurch'),new Array('St Bernadette`s RC Primary School (39049-37155)',53.424181,-2.139895,'School'),new Array('St Bernadette`s Primary School (38159-36263)',53.42195,-2.141453,'School'),new Array('Sacred Heart (57259-63306)',53.457754,-2.17399,'ParishChurch'),new Array('St Ann (57041-63197)',53.488685,-2.100606,'Church'),new Array('St Christopher`s Primary School (38161-36265)',53.415186,-2.10311,'School'),new Array('St Stephen`s RC Primary School (39020-37126)',53.485882,-2.146051,'School'),new Array('Harrytown School (38223-36327)',53.41336,-2.104475,'School'),new Array('St Stephen (57157-63255)',53.485882,-2.146051,'ParishChurch'),new Array('Our Lady and St Christopher Church (59604-32787)',53.413407,-2.101917,'ParishChurch'),new Array('Our Lady Of Mount Carmel RC Primary School (39018-37124)',53.49287,-2.083991,'School'),new Array('St Peter`s RC Primary and Nursery School (39050-37156)',53.478155,-2.054113,'School'),new Array('St Richard (5961-63310)',53.451681,-2.18889,'ParishChurch'),new Array('St Richard`s RC Primary School (38945-37051)',53.45213,-2.189528,'School'),new Array('St Peter Church (59769-32779)',53.480142,-2.053363,'ParishChurch'),new Array('St John`s (71040-74960)',53.4226915,-2.17329970000003,'Other'),new Array('St Mary (57267-63310)',53.443334,-2.189437,'ParishChurch'),new Array('St Anne`s RC High School (39016-37122)',53.422037,-2.171428,'School'),new Array('St John`s (71040-75115)',53.4226915,-2.17329970000003,'Other'),new Array('St Francis of Assisi (6155-63306)',53.468958,-2.188624,'ParishChurch'),new Array('St Mary`s RC Primary School (39014-37120)',53.413705,-2.160774,'School'),new Array('St Francis RC Primary School (38936-37042)',53.469696,-2.1881,'School'),new Array('St Mary (57401-63377)',53.413705,-2.160774,'ParishChurch'),new Array('St James Church (59704-32778)',53.45163,-2.030815,'ParishChurch'),new Array('St James School (38169-36273)',53.450811,-2.03217,'School'),new Array('St Mary`s RC Primary School (38940-37046)',53.439273,-2.191895,'School'),new Array('St Joseph Church (59716-32772)',53.410067,-2.156562,'ParishChurch'),new Array('St Peter`s RC High School- Specialist College for Business and Enterprise (39111-37217)',53.459454,-2.196233,'School'),new Array('St Joseph`s Primary School (38178-36282)',53.409724,-2.157568,'School'),new Array('St Willibrord (57245-63289)',53.485662,-2.177228,'ParishChurch'),new Array('St Willibrord`s RC Primary School (38943-37049)',53.488372,-2.177588,'School'),new Array('St Christopher (5742-63197)',53.503724,-2.077303,'ParishChurch'),new Array('St Anne`s RC Primary School (38929-37035)',53.479141,-2.196346,'School'),new Array('St Anne (57225-63289)',53.479141,-2.196346,'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';
}
//