strList="

Saint Hugh Of Lincoln Church (0 miles)
Zoom on map | View full information

St Joseph (0 miles)
Zoom on map | View full information

St Mary`s RC High School (0.3 miles)
Zoom on map | View full information

St Joseph`s Convent School (1 miles)
Zoom on map | View full information

St Joseph`s Convent School (1 miles)
Zoom on map | View full information

St Mary`s Catholic Primary School (1.1 miles)
Zoom on map | View full information

Saint Patrick (chapel Of Ease To Staveley) Church (1.2 miles)
Zoom on map | View full information

"; function showResults() { document.getElementById("mapList").style.display="block"; } var records = new Array(new Array('Saint Hugh Of Lincoln Church (44699-48362)',53.254155,-1.44643,'ParishChurch'),new Array('St Joseph (65190-70877)',53.254155,-1.44643,'Church'),new Array('St Mary`s RC High School (37603-35707)',53.25326,-1.453112,'School'),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 Mary`s Catholic Primary School (37393-35497)',53.240328,-1.434502,'School'),new Array('Saint Patrick (chapel Of Ease To Staveley) Church (44703-48386)',53.236196,-1.449327,'ParishChurch'),new Array('The Annunciation Church (44696-48345)',53.239963,-1.431375,'ParishChurch'),new Array('The Holy Family Church (44698-48357)',53.223704,-1.426288,'ParishChurch'),new Array('Holy Spirit Church (44701-48375)',53.304768,-1.457331,'ParishChurch'),new Array('St Joseph`s Catholic Primary School (37385-35489)',53.2578,-1.359411,'School'),new Array('St Joseph`s Primary (65191-70877)',53.274064,-1.348296,'School'),new Array('Saint Anthony Church (44765-48665)',53.333035,-1.46733,'ParishChurch'),new Array('English Martyrs Church (44766-48666)',53.316324,-1.530736,'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('Chapel of Ease - St Anthony`s (66538-48647)',53.339277,-1.442055,'Other'),new Array('Our Lady of Beauchief and St Thomas of Canterbury (65217-70896)',53.338308,-1.482257,'Church'),new Array('Mount St Mary`s College (37317-35421)',53.302093,-1.319539,'School'),new Array('Mount St Mary`s College (65189-70876)',53.302093,-1.319539,'School'),new Array('Immaculate Conception Church (44704-48387)',53.302057,-1.317994,'ParishChurch'),new Array('Immaculate Conception Primary School (37394-35498)',53.302057,-1.317994,'School'),new Array('St Patrick and St Bridget Church (55967-62103)',53.163997,-1.409195,'Other'),new Array('St Patrick and St Bridget Church (55967-62133)',53.163997,-1.409195,'Other'),new Array('St Bernadette Church (55956-62119)',53.228202,-1.293043,'ParishChurch'),new Array('St John Fisher Catholic Primary School (37667-35771)',53.344444,-1.385076,'School'),new Array('Our Lady of Lourdes (65212-48647)',53.344444,-1.385076,'ParishChurch'),new Array('St Wilfrid`s Catholic Primary School (37660-35764)',53.348055,-1.506384,'School'),new Array('St Wilfrid`s (65216-48696)',53.348055,-1.506384,'School'),new Array('Mother Of God And Saint Wilfrid Church (44773-48696)',53.35155,-1.497337,'ParishChurch'),new Array('Mylnhurst and Nursery School (37294-35398)',53.350927,-1.507687,'School'),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('Barlborough Hall School (37301-35405)',53.299129,-1.28467,'School'),new Array('St Theresa`s Catholic Primary School (37392-35496)',53.364784,-1.420578,'School'),new Array('Saint Theresa Of The Child Jesus Church (44772-48688)',53.363972,-1.421792,'ParishChurch'),new Array('St William Of York Church (44775-48722)',53.362928,-1.50791,'ParishChurch'),new Array('All Saints Catholic High School (37602-35706)',53.373645,-1.458531,'School'),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('Saint Oswald Church (44771-48682)',53.376718,-1.438876,'ParishChurch'),new Array('Emmaus Catholic and Church of England Primary School (37659-35763)',53.376718,-1.438876,'School'),new Array('St Joseph`s Catholic Primary School (38912-37018)',53.141571,-1.542419,'School'),new Array('St Marie`s Catholic Primary School (37391-35495)',53.373104,-1.514737,'School'),new Array('Notre Dame High School (37601-35705)',53.372701,-1.517131,'School'),new Array('The Cathedral Church Of Saint Marie Church (44673-48237)',53.381599,-1.468281,'ParishChurch'),new Array('Cathedral House (42815-48435)',53.381719,-1.467028,'ParishChurch'),new Array('Cathedral House (42815-48397)',53.381719,-1.467028,'ParishChurch'),new Array('Cathedral House (42815-48552)',53.381719,-1.467028,'ParishChurch'),new Array('Cathedral House (42815-48553)',53.381719,-1.467028,'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'; } //