strList="

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

Corpus Christi Church (4.7 miles)
Zoom on map | View full information

Beechwood Sacred Heart Rc School (5.1 miles)
Zoom on map | View full information

St Margaret Clitherow Catholic Primary School (5.6 miles)
Zoom on map | View full information

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

St Dunstan Church (5.7 miles)
Zoom on map | View full information

Sacred Heart Church (5.7 miles)
Zoom on map | View full information

"; function showResults() { document.getElementById("mapList").style.display="block"; } var records = new Array(new Array('St Justus Church (61086-65620)',51.178035,0.384008,'ParishChurch'),new Array('Corpus Christi Church (61084-65619)',51.19609,0.278646,'ParishChurch'),new Array('Beechwood Sacred Heart Rc School (39070-37176)',51.135934,0.286862,'School'),new Array('St Margaret Clitherow Catholic Primary School (38620-36724)',51.215973,0.269948,'School'),new Array('St Augustine`s Catholic Primary School (38621-36725)',51.148865,0.264766,'School'),new Array('St Dunstan Church (61080-65617)',51.160904,0.256559,'ParishChurch'),new Array('Sacred Heart Church (61262-65710)',51.115142,0.468959,'ParishChurch'),new Array('St Gregory`s Catholic Comprehensive School (38633-36737)',51.148684,0.255534,'School'),new Array('St Augustine Church (61078-65616)',51.131713,0.265298,'ParishChurch'),new Array('The Sacred Heart (34945-33774)',51.065008,0.324356,'ParishChurch'),new Array('More Park Catholic Primary School (38624-36728)',51.295211,0.418276,'School'),new Array('St Thomas More Church (61250-65704)',51.295211,0.418276,'ParishChurch'),new Array('St Simon Stock Secondary School (38632-36736)',51.272861,0.496677,'School'),new Array('Sacred Heart School (38735-36842)',51.065008,0.324356,'School'),new Array('St Francis Catholic Primary School (38628-36732)',51.274503,0.497698,'School'),new Array('St Theodore Church (61264-65711)',51.094931,0.530013,'ParishChurch'),new Array('Holy Family Catholic Primary School (38627-36731)',51.238438,0.556449,'School'),new Array('Holy Family Church (61248-65703)',51.238438,0.556449,'ParishChurch'),new Array('St Francis Church (61244-65701)',51.27722,0.522409,'ParishChurch'),new Array('St Peter Church (61246-65702)',51.265454,0.57247,'ParishChurch'),new Array('St Thomas Catholic Primary School (38615-36719)',51.270724,0.188245,'School'),new Array('St Thomas of Canterbury Church (61088-65621)',51.272507,0.186681,'ParishChurch'),new Array('St Peter, Prince of Apostles (34909-33756)',51.042877,0.21782,'ParishChurch'),new Array('Convent of the Holy Child (71089-75076)',51.02067419999999,0.2612821,'Other'),new Array('St Leonard`s Mayfield School (38747-36853)',51.021602,0.260782,'School'),new Array('St Thomas of Canterbury (34869-33736)',51.020022,0.254573,'ParishChurch'),new Array('Christ the King (34783-33693)',50.997336,0.381631,'ParishChurch'),new Array('St. Mary`s Catholic Primary School (38758-36864)',51.054814,0.166891,'School'),new Array('St Mary, Mother of Christ (65947-70922)',51.054814,0.166891,'Church'),new Array('St Benedict`s Catholic Primary School (38623-36727)',51.337711,0.545702,'School'),new Array(' Church (61062-65608)',51.34815,0.52547,'ParishChurch'),new Array('St Thomas More Catholic Primary School (38622-36726)',51.34815,0.52547,'School'),new Array('Combe Bank School (39071-37177)',51.282306,0.122387,'School'),new Array('St Paul Church (61220-65689)',51.376955,0.359037,'ParishChurch'),new Array('St Lawrence Church (61082-65618)',51.198255,0.064128,'ParishChurch'),new Array('St William Of Perth Catholic Primary School (38614-36718)',51.373994,0.497507,'School'),new Array('St John Fisher Church (61056-65605)',51.373994,0.497507,'ParishChurch'),new Array('St Augustine of Canterbury Church (61068-65611)',51.341064,0.595341,'ParishChurch'),new Array('St Augustine Of Canterbury Catholic Primary School (38611-36715)',51.341152,0.595834,'School'),new Array('St John the Baptist Church (61090-65622)',51.265093,0.077787,'ParishChurch'),new Array('Oratory of St Francis de Sales Church (61038-65596)',51.384347,0.310336,'ParishChurch'),new Array('Our Lady Of Hartley Catholic Primary School (38606-36710)',51.385569,0.306718,'School'),new Array('St John Fisher Catholic Comprehensive School (38630-36734)',51.377735,0.517269,'School'),new Array('St Catherine (34839-33721)',50.973651,0.258723,'ParishChurch'),new Array('St Michael`s Catholic Primary School (38598-36702)',51.378112,0.521486,'School'),new Array('St Michael the Archangel Church (61060-65607)',51.379613,0.521138,'ParishChurch'),new Array('St Andrew Church (61270-65714)',51.071937,0.691647,'ParishChurch'),new Array('St John the Evangelist (34841-33722)',51.0240047,0.1168439,'ParishChurch'),new Array('Our Lady of the Forest (34815-33709)',51.095085,0.045206,'ParishChurch'),new Array('St John the Evangelist (34841-33773)',51.0240047,0.1168439,'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'; } //