strList="

St Thomas Of Canterbury Catholic Primary School (0 miles)
Zoom on map | View full information

St Thomas of Canterbury (0 miles)
Zoom on map | View full information

Our Lady of Beauchief & St Thomas of Canterbury (0.4 miles)
Zoom on map | View full information

Saint Anthony Church (0.6 miles)
Zoom on map | View full information

Mother Of God And Saint Wilfrid Church (1.5 miles)
Zoom on map | View full information

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

St Wilfrid`s (1.5 miles)
Zoom on map | View full information

"; function showResults() { document.getElementById("mapList").style.display="block"; } var records = new Array(new Array('St Thomas Of Canterbury Catholic Primary School (37661-35765)',53.33187,-1.481959,'School'),new Array('St Thomas of Canterbury (65218-70896)',53.33187,-1.481959,'School'),new Array('Our Lady of Beauchief and St Thomas of Canterbury (65217-70896)',53.338308,-1.482257,'Church'),new Array('Saint Anthony Church (44765-48665)',53.333035,-1.46733,'ParishChurch'),new Array('Mother Of God And Saint Wilfrid Church (44773-48696)',53.35155,-1.497337,'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('Mylnhurst and Nursery School (37294-35398)',53.350927,-1.507687,'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('English Martyrs Church (44766-48666)',53.316324,-1.530736,'ParishChurch'),new Array('St William Of York Church (44775-48722)',53.362928,-1.50791,'ParishChurch'),new Array('The Holy Family (65211-70894)',53.361331,-1.44883,'ParishChurch'),new Array('Holy Family Church (44720-48457)',53.361331,-1.44883,'ParishChurch'),new Array('All Saints Catholic High School (37602-35706)',53.373645,-1.458531,'School'),new Array('Notre Dame High School (37601-35705)',53.372701,-1.517131,'School'),new Array('St Marie`s Catholic Primary School (37391-35495)',53.373104,-1.514737,'School'),new Array('Saint Theresa Of The Child Jesus Church (44772-48688)',53.363972,-1.421792,'ParishChurch'),new Array('Catholic Chaplaincy to The University of Sheffield and Sheffield Hallam University (70991-70900)',53.37941910000001,-1.496325100000036,'Other'),new Array('St Theresa`s Catholic Primary School (37392-35496)',53.364784,-1.420578,'School'),new Array('Cathedral House (42815-48397)',53.381719,-1.467028,'ParishChurch'),new Array('Cathedral House (42815-48273)',53.381719,-1.467028,'ParishChurch'),new Array('Cathedral House (42815-48553)',53.381719,-1.467028,'ParishChurch'),new Array('Cathedral House (42815-48552)',53.381719,-1.467028,'ParishChurch'),new Array('Cathedral House (42815-48356)',53.381719,-1.467028,'ParishChurch'),new Array('Cathedral House (42815-48435)',53.381719,-1.467028,'ParishChurch'),new Array('The Cathedral Church Of Saint Marie Church (44673-48237)',53.381599,-1.468281,'ParishChurch'),new Array('St Maria`s Cathedral (65152-878)',53.381719,-1.467028,'Other'),new Array('Cathedral House (42815-48493)',53.381719,-1.467028,'ParishChurch'),new Array('Cathedral House (42815-48299)',53.381719,-1.467028,'ParishChurch'),new Array('Cathedral House (42815-48617)',53.381719,-1.467028,'ParishChurch'),new Array('Cathedral House (42815-48642)',53.381719,-1.467028,'ParishChurch'),new Array('Cathedral House (42815-48664)',53.381719,-1.467028,'ParishChurch'),new Array('Cathedral House (42815-48569)',53.381719,-1.467028,'ParishChurch'),new Array('Cathedral House (42815-48309)',53.381719,-1.467028,'ParishChurch'),new Array('Cathedral House (42815-48645)',53.381719,-1.467028,'ParishChurch'),new Array('Cathedral House (42815-48681)',53.381719,-1.467028,'ParishChurch'),new Array('Emmaus Catholic and Church of England Primary School (37659-35763)',53.376718,-1.438876,'School'),new Array('Diocese of Hallam (4798-878)',53.373131,-1.535058,'Other'),new Array('Saint Oswald Church (44771-48682)',53.376718,-1.438876,'ParishChurch'),new Array('Claremont Hospital Chapel Church (44759-48643)',53.375792,-1.535164,'ParishChurch'),new Array('St Francis of Assisi (65208-70891)',53.376928,-1.529049,'ParishChurch'),new Array('Saint Vincent Church (44755-48632)',53.383762,-1.507384,'ParishChurch'),new Array('Saint Michael`s Cemetery Chapel Church (44756-48633)',53.364251,-1.559366,'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('Diocese Of Hallam Pastoral Centre Church (44767-48667)',53.392271,-1.437423,'ParishChurch'),new Array('Saint Catherine Of Alexandria Church (44751-48590)',53.396908,-1.462582,'ParishChurch'),new Array('Saint Charles Borromeo Church (44760-48644)',53.392271,-1.437423,'ParishChurch'),new Array('Saint Joseph Church (44768-48668)',53.371989,-1.385641,'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'; } //