strList="
Immaculate Conception Primary School (0 miles)
Zoom on map | View full information
Immaculate Conception Church (0 miles)
Zoom on map | View full information
Mount St Mary`s College (0.1 miles)
Zoom on map | View full information
Mount St Mary`s College (0.1 miles)
Zoom on map | View full information
Barlborough Hall School (1.4 miles)
Zoom on map | View full information
St Joseph`s Primary (2.3 miles)
Zoom on map | View full information
St Joseph`s Catholic Primary School (3.5 miles)
Zoom on map | View full information
";
function showResults()
{
document.getElementById("mapList").style.display="block";
}
var records = new Array(new Array('Immaculate Conception Primary School (37394-35498)',53.302057,-1.317994,'School'),new Array('Immaculate Conception Church (44704-48387)',53.302057,-1.317994,'ParishChurch'),new Array('Mount St Mary`s College (65189-70876)',53.302093,-1.319539,'School'),new Array('Mount St Mary`s College (37317-35421)',53.302093,-1.319539,'School'),new Array('Barlborough Hall School (37301-35405)',53.299129,-1.28467,'School'),new Array('St Joseph`s Primary (65191-70877)',53.274064,-1.348296,'School'),new Array('St Joseph`s Catholic Primary School (37385-35489)',53.2578,-1.359411,'School'),new Array('Blessed William Richardson (66496-48320)',53.3416272,-1.2609857,'Other'),new Array('Our Lady of Lourdes (65212-48647)',53.344444,-1.385076,'ParishChurch'),new Array('St John Fisher Catholic Primary School (37667-35771)',53.344444,-1.385076,'School'),new Array('St Bernadette Church (55956-62119)',53.228202,-1.293043,'ParishChurch'),new Array('Saint Joseph Church (44768-48668)',53.371989,-1.385641,'ParishChurch'),new Array('St Joseph`s (65214-48668)',53.371989,-1.385641,'School'),new Array('Chapel of Ease - St Anthony`s (66538-48647)',53.339277,-1.442055,'Other'),new Array('Holy Spirit Church (44701-48375)',53.304768,-1.457331,'ParishChurch'),new Array('Saint Theresa Of The Child Jesus Church (44772-48688)',53.363972,-1.421792,'ParishChurch'),new Array('St Theresa`s Catholic Primary School (37392-35496)',53.364784,-1.420578,'School'),new Array('Saint Hugh Of Lincoln Church (44699-48362)',53.254155,-1.44643,'ParishChurch'),new Array('St Joseph`s Convent School (65185-48345)',53.241292,-1.433006,'Other'),new Array('St Joseph`s Convent School (37300-35404)',53.241292,-1.433006,'School'),new Array('St Joseph (65190-70877)',53.254155,-1.44643,'Church'),new Array('St Mary`s Catholic Primary School (37393-35497)',53.240328,-1.434502,'School'),new Array('Saint Joseph Church (44689-48320)',53.3651479,-1.2042813,'ParishChurch'),new Array('The Annunciation Church (44696-48345)',53.239963,-1.431375,'ParishChurch'),new Array('St Joseph`s Catholic Primary School (37384-35488)',53.36798,-1.207232,'School'),new Array('St Mary`s RC High School (37603-35707)',53.25326,-1.453112,'School'),new Array('St Anthony Church (44765-48665)',53.333035,-1.46733,'ParishChurch'),new Array('Holy Family Church (44720-48457)',53.361331,-1.44883,'ParishChurch'),new Array('The Holy Family (65211-70894)',53.361331,-1.44883,'ParishChurch'),new Array('The Holy Family Church (44698-48357)',53.223704,-1.426288,'ParishChurch'),new Array('St Thomas of Canterbury (65218-70896)',53.33187,-1.481959,'School'),new Array('St Thomas Of Canterbury Catholic Primary School (37661-35765)',53.33187,-1.481959,'School'),new Array('St Patrick (chapel Of Ease To Staveley) Church (44703-48386)',53.236196,-1.449327,'ParishChurch'),new Array('St Oswald Church (44771-48682)',53.376718,-1.438876,'ParishChurch'),new Array('Our Lady of Beauchief and St Thomas of Canterbury (65217-70896)',53.338308,-1.482257,'Church'),new Array('Emmaus Catholic and Church of England Primary School (37659-35763)',53.376718,-1.438876,'School'),new Array('St Edward the Confessor (65210-70893)',53.406202,-1.368888,'ParishChurch'),new Array('All Saints Catholic High School (37602-35706)',53.373645,-1.458531,'School'),new Array('Saint Mary Church (44694-48336)',53.2772999,-1.1375034,'ParishChurch'),new Array('St Joseph`s Catholic Primary School (37825-35929)',53.208682,-1.210504,'School'),new Array('St Joseph Church (56065-62282)',53.208682,-1.210504,'ParishChurch'),new Array('Saint Charles Borromeo Church (44760-48644)',53.392271,-1.437423,'ParishChurch'),new Array('Diocese Of Hallam Pastoral Centre Church (44767-48667)',53.392271,-1.437423,'ParishChurch'),new Array('Mother Of God And Saint Wilfrid Church (44773-48696)',53.35155,-1.497337,'ParishChurch'),new Array('The Cathedral Church Of Saint Marie Church (44673-48237)',53.381599,-1.468281,'Cathedral'),new Array('Holy Family Catholic Primary School (37397-35501)',53.29537,-1.115495,'School'),new Array('St Bernard`s Catholic High School (37600-35704)',53.423922,-1.32342,'School'),new Array('St Wilfrid`s Catholic Primary School (37660-35764)',53.348055,-1.506384,'School'),new Array('St Bernard`s Comprehensive (65195-48516)',53.423922,-1.32342,'School'),new Array('St Wilfrid`s (65216-48696)',53.348055,-1.506384,'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';
}
//