strList="
Sacred Heart (0 miles)
Zoom on map | View full information
Sacred Heart School (0.1 miles)
Zoom on map | View full information
Saint Paul Church (1.8 miles)
Zoom on map | View full information
St Joseph (2.4 miles)
Zoom on map | View full information
St Joseph`s Catholic Primary (moorthorpe) School (2.4 miles)
Zoom on map | View full information
Saint Mary Magdalene Church (3.6 miles)
Zoom on map | View full information
Our Lady And Saint Joseph Church (4.3 miles)
Zoom on map | View full information
";
function showResults()
{
document.getElementById("mapList").style.display="block";
}
var records = new Array(new Array('Sacred Heart (63055-66685)',53.611176,-1.35175,'ParishChurch'),new Array('Sacred Heart School (38661-36765)',53.610491,-1.354798,'School'),new Array('Saint Paul Church (44681-48290)',53.588205,-1.370637,'ParishChurch'),new Array('St Joseph (63137-66685)',53.594067,-1.301517,'Church'),new Array('St Joseph`s Catholic Primary (moorthorpe) School (38876-36982)',53.5940487,-1.3015176,'School'),new Array('Saint Mary Magdalene Church (44679-48285)',53.576567,-1.417522,'ParishChurch'),new Array('Our Lady And Saint Joseph Church (44683-48300)',53.598696,-1.453634,'ParishChurch'),new Array('St. Wilfrid School (38729-36833)',53.674826,-1.374985,'School'),new Array('St Dominic`s Catholic Primary School (37370-35474)',53.577562,-1.457123,'School'),new Array('Holy trinity (37597-35701)',53.57860789999999,-1.457849900000042,'School'),new Array('Blessed Sacrament Church (44674-48245)',53.575069,-1.464344,'ParishChurch'),new Array('Sacred Heart Catholic Primary School (37295-35399)',53.535722,-1.302991,'School'),new Array('St. Joseph School (38698-36802)',53.691042,-1.317026100000021,'School'),new Array('St Joseph (63139-66733)',53.691751,-1.316909,'ParishChurch'),new Array('St Michael and All Angels Catholic Primary School (37372-35476)',53.528082,-1.388529,'School'),new Array('St Wilfrid’s Catholic High School and Sixth Form College (38877-36983)',53.696475,-1.361754,'School'),new Array('Address: Cobblers Lane School (38646-36750)',53.693241,-1.290124,'School'),new Array('St Thomas à Beckett Catholic Secondary School (38726-36830)',53.660989,-1.482883,'School'),new Array('St. John The Baptist School (38682-36786)',53.699545,-1.408238,'School'),new Array('St Michael and All Angels (65159-48310)',53.520582,-1.393147,'ParishChurch'),new Array('Sacred Heart Church (44684-48317)',53.520582,-1.393147,'ParishChurch'),new Array('St John the Baptist (63118-66721)',53.694926,-1.423296,'ParishChurch'),new Array('SS Peter and Paul (63072-66694)',53.647881,-1.499048,'ParishChurch'),new Array('St Helen Church (44710-48404)',53.601686,-1.191182,'ParishChurch'),new Array('Holy Rood Rectory (65156-70854)',53.549889,-1.484147,'ParishChurch'),new Array('St Teresa Church (44680-48288)',53.588283,-1.517639,'ParishChurch'),new Array('Our Lady`s Catholic Primary School (37373-35477)',53.533085,-1.46261,'School'),new Array('Holy Rood Primary School (65157-70854)',53.549589,-1.491697,'Other'),new Array('Our Lady and St James (65158-70857)',53.527666,-1.466903,'Other'),new Array('Saint Joseph Church (44741-48541)',53.50121,-1.336935,'ParishChurch'),new Array('Saint George and The English Martyrs Church (44711-48405)',53.612043,-1.164418,'ParishChurch'),new Array('Our Lady andst Joseph`s RC Primary School (37383-35487)',53.499913,-1.346256,'School'),new Array('Saint Joseph And Saint Teresa Church (44725-48486)',53.563344,-1.183595,'ParishChurch'),new Array('St. Austin School (38668-36772)',53.687256,-1.492055,'School'),new Array('St Joseph`s and St Teresa`s Primary School (37299-35403)',53.561491,-1.180837,'School'),new Array('St Joseph (63131-66728)',53.725023,-1.346954,'ParishChurch'),new Array('St Joseph Catholic Primary Academy (38696-36800)',53.725023,-1.346954,'School'),new Array('St Austin (63106-66714)',53.686974,-1.502022,'ParishChurch'),new Array('St Michael (63170-66733)',53.7097621,-1.2461109,'Church'),new Array('English Martyrs Church (44729-48494)',53.498662,-1.287785,'ParishChurch'),new Array('Pope Pius X Catholic High School (37599-35703)',53.492261,-1.337632,'School'),new Array('St Helen`s Catholic Primary School (37371-35475)',53.500733,-1.444507,'School'),new Array('English Martyrs School (38642-36746)',53.678032,-1.531239,'School'),new Array('English Martyrs (62984-66714)',53.67771,-1.531773,'Church'),new Array('St Alban`s Catholic Primary School (37375-35479)',53.489282,-1.24446,'School'),new Array('Our Lady Of Perpetual Help Church (44713-48409)',53.546072,-1.146801,'ParishChurch'),new Array('St Alban Church (44726-48487)',53.489282,-1.24446,'ParishChurch'),new Array('St Alban`s Convent (65182-48487)',53.489282,-1.24446,'Other'),new Array('Our Lady Of Perpetual Help Catholic School (37374-35478)',53.546929,-1.143478,'School'),new Array('Our Lady`s Primary School (65170-48409)',53.547979,-1.143246,'School'));
// 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';
}
//