strList="
The Good Shepherd (0 miles)
Zoom on map | View full information
Sacred Heart School (2.9 miles)
Zoom on map | View full information
St Columba (3.5 miles)
Zoom on map | View full information
Sacred Heart and St Patrick (3.6 miles)
Zoom on map | View full information
St. Malachy School (3.8 miles)
Zoom on map | View full information
St Malachy (3.9 miles)
Zoom on map | View full information
St Mary (4.6 miles)
Zoom on map | View full information
";
function showResults()
{
document.getElementById("mapList").style.display="block";
}
var records = new Array(new Array('The Good Shepherd (62986-66646)',53.72893,-1.982593,'ParishChurch'),new Array('Sacred Heart School (38660-36764)',53.705592,-1.923766,'School'),new Array('St Columba (63098-66709)',53.728581,-1.896427,'ParishChurch'),new Array('Sacred Heart and St Patrick (63063-66689)',53.7119,-1.898316,'Church'),new Array('St. Malachy School (38705-36809)',53.742833,-1.893875,'School'),new Array('St Malachy (63036-66674)',53.739745,-1.888152,'ParishChurch'),new Array('St Mary (63155-66742)',53.719618,-1.871763,'ParishChurch'),new Array('St Alban (63081-66742)',53.719618,-1.871763,'Church'),new Array('St Joseph School (38074-36178)',53.717423,-2.096395,'School'),new Array('St. Mary School (38709-36813)',53.71784,-1.868738,'School'),new Array('St Joseph (57417-63385)',53.716997,-2.097093,'ParishChurch'),new Array('St Bernard (63061-66688)',53.730297,-1.860136,'ParishChurch'),new Array('St. Joseph School (38692-36796)',53.72871,-1.855912,'School'),new Array('St Theresa of the Child Jesus (63195-66764)',53.765581,-1.850811,'ParishChurch'),new Array('St. Patrick School (38717-36821)',53.684188,-1.853157,'School'),new Array('St Patrick (63180-66756)',53.684483,-1.83753,'ParishChurch'),new Array('Our Lady of Lourdes (63032-66729)',53.834204,-1.94593,'Church'),new Array('St Mary`s RC Primary School (38972-37078)',53.645665,-2.102977,'School'),new Array('St John the Evangelist (63119-66713)',53.763443,-1.807055,'Church'),new Array('St. Joseph School (38693-36797)',53.715006,-1.795882,'School'),new Array('St Mary of the Annunciation (57207-63356)',53.642459,-2.104555,'Church'),new Array('St. John The Evangelist School (38683-36787)',53.77084,-1.801468,'School'),new Array('St. Anthony School (38665-36769)',53.784907,-1.807381,'School'),new Array('St Anthony (63085-66701)',53.784907,-1.807381,'ParishChurch'),new Array('St. Matthew School (38714-36818)',53.799794,-1.821084,'School'),new Array('St Matthew (63169-66750)',53.800307,-1.821385,'ParishChurch'),new Array('St Joseph (63129-66727)',53.703374,-1.780033,'ParishChurch'),new Array('Holy Family (62991-71428)',53.620392,-1.878897,'Church'),new Array('St Mary School (38113-36217)',53.701797,-2.190377,'School'),new Array('St Winefride (63104-66713)',53.76308,-1.778872,'ParishChurch'),new Array('St. Winefride School (38732-36836)',53.762048,-1.775267,'School'),new Array('St. Patrick`s Catholic Primary School (38719-36823)',53.657208,-1.799081,'School'),new Array('St Anselm (57437-63395)',53.665347,-2.173939,'ParishChurch'),new Array('Our Lady and St Anselm School (38110-36214)',53.665347,-2.173939,'School'),new Array('St Mary (57047-63395)',53.702925,-2.202027,'Church'),new Array('St. William School (38731-36835)',53.796738,-1.788077,'School'),new Array('Alice Ingham RC Primary School (38983-37089)',53.630208,-2.136872,'School'),new Array('All Saints Catholic College (38636-36740)',53.678399,-1.772124,'School'),new Array('St Cuthbert (63101-66665)',53.813143,-1.804898,'Church'),new Array('St. Joseph School (38691-36795)',53.857375,-1.915646,'School'),new Array('First Martyrs of Rome (63018-66665)',53.813143,-1.804898,'ParishChurch'),new Array('HMP Buckley Hall (71164-75209)',53.6349775,-2.1450527,'Other'),new Array('Our Lady of Lourdes and St William (63038-66675)',53.80234,-1.785119,'ParishChurch'),new Array('Address: Bradley Boulevard Sheepridge School (38656-36760)',53.671266,-1.769287,'School'),new Array('St Mary and St Monica (63165-66682)',53.829032,-1.821157,'Church'),new Array('St. Cuthbert and The First Martyrs School (38674-36778)',53.809271,-1.78484,'School'),new Array('Our Lady Of Victories School (38657-36761)',53.86672,-1.925405,'School'),new Array('Our Lady of Czestochowa (63026-66669)',53.650191,-1.784984,'ParishChurch'),new Array('St Joseph (63127-66726)',53.782457,-1.759663,'ParishChurch'),new Array('Our Lady of Lourdes (63039-71428)',53.670064,-1.766024,'Church'));
// 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';
}
//