strList="

The Sacred Heart (0 miles)
Zoom on map | View full information

St Anthony and St George (2.6 miles)
Zoom on map | View full information

St Martha`s Convent (5.9 miles)
Zoom on map | View full information

The Divine Motherhood and St Francis of Assisi (5.9 miles)
Zoom on map | View full information

Convent of Mercy (5.9 miles)
Zoom on map | View full information

The Divine Motherhood and St Francis of Assisi (5.9 miles)
Zoom on map | View full information

St Gabriel (7.4 miles)
Zoom on map | View full information

"; function showResults() { document.getElementById("mapList").style.display="block"; } var records = new Array(new Array('The Sacred Heart (34893-33748)',50.986086,-0.606883,'ParishChurch'),new Array('St Anthony and St George (65949-33748)',50.95151,-0.630553,'Other'),new Array('St Martha`s Convent (71083-75070)',50.9866695,-0.7422678,'Other'),new Array('The Divine Motherhood and St Francis of Assisi (34875-33739)',50.984168,-0.742142,'ParishChurch'),new Array('Convent of Mercy (71084-75071)',50.9866695,-0.7422678,'Other'),new Array('The Divine Motherhood and St Francis of Assisi (34875-33748)',50.984168,-0.742142,'ParishChurch'),new Array('St Gabriel (34763-33683)',51.021973,-0.446826,'ParishChurch'),new Array('The Priory (71066-75029)',50.915977,-0.4596978,'Other'),new Array('Our Lady of England (34931-33767)',50.916562,-0.459342,'ParishChurch'),new Array('St Richard (34757-33684)',50.867953,-0.637096,'ParishChurch'),new Array('Our Lady of Lourdes (34831-33717)',51.091464,-0.7161,'ParishChurch'),new Array('Our Lady of Lourdes (34467-70935)',51.091464,-0.7161,'ParishChurch'),new Array('St Teresa Of Avila (65959-70935)',51.115262,-0.633948,'Church'),new Array('Cathedral of Our Lady and St Philip Howard (65160-70856)',50.857076,-0.56103,'Cathedral'),new Array('Holy Cross Chapel (65960-70935)',51.090623,-0.736386,'Other'),new Array('St. Philip`s School (33281-33017)',50.856182,-0.561541,'School'),new Array('Holy Cross Hospital (71068-75033)',51.0905876,-0.7360429,'Other'),new Array('Holy Cross Chapel (65960-75419)',51.090623,-0.736386,'Other'),new Array('Convent of Poor Clares (65162-70856)',50.846554,-0.539308,'Other'),new Array('St Philip Howard Catholic High School (38793-36899)',50.833628,-0.644954,'School'),new Array('The Immaculate Conception (933-9824)',51.083878,-0.804743,'ParishChurch'),new Array('St Joseph (885-9808)',51.112237,-0.761169,'ParishChurch'),new Array('St Anselm (34845-33724)',51.122065,-0.75519,'ParishChurch'),new Array('St Anselm (33705-70935)',51.122065,-0.75519,'ParishChurch'),new Array('Barrow Hills School (38734-36838)',51.151151,-0.656438,'School'),new Array('St. Wilfrid`s School (33280-33016)',50.830784,-0.48601,'School'),new Array('St Catherine`s Catholic School (38784-36890)',50.816746,-0.53967,'School'),new Array('St Cuthbert Mayne Catholic Primary School (38771-36877)',51.14333,-0.482399,'School'),new Array('St Agnes (972-9837)',51.033323,-0.874543,'ParishChurch'),new Array('Jesus Christ the Redeemer of Mankind (6219-70915)',51.14333,-0.482399,'ParishChurch'),new Array('De La Salle Brothers Community House (71060-75309)',51.027632,-0.876538,'Other'),new Array('Our Lady of Consolation andamp; St Francis (34990-33808)',50.982161,-0.320663,'Church'),new Array('Our Lady of Consolation and St Francis (36469-33777)',50.982161,-0.320663,'Church'),new Array('Our Lady of Consolation and St Francis (36469-34568)',50.982161,-0.320663,'Church'),new Array('St Joseph`s School (38750-74974)',51.152181,-0.481851,'School'),new Array('St. John`s School (33297-33033)',51.062422,-0.340094,'School'),new Array('St Catherine (34867-33735)',50.8056542,-0.538681900000029,'ParishChurch'),new Array('St Joseph (34913-33735)',50.8131114,-0.5005387,'ParishChurch'),new Array('St Joseph (34913-33758)',50.8131114,-0.5005387,'ParishChurch'),new Array('St. Richard`s School (33288-33024)',50.832699,-0.776549,'School'),new Array('St Richard of Chichester (65164-70860)',50.832699,-0.776549,'ParishChurch'),new Array('Bethany Community House (71065-75028)',50.8152261,-0.4806175,'Other'),new Array('St Joseph (34877-33740)',51.172593,-0.649706,'ParishChurch'),new Array('St Joseph (33513-33712)',51.1723389,-0.6506665,'Church'),new Array('St John The Evangelist (34849-33777)',51.063898,-0.331992,'ParishChurch'),new Array('St Edmund`s Catholic Primary School (38770-36876)',51.17726,-0.605235,'School'),new Array('St Michael (34967-33785)',50.842464,-0.404855,'ParishChurch'),new Array('Our Lady Star of the Sea (34749-33676)',50.809381,-0.479861,'ParishChurch'),new Array('Our Lady Star of the Sea (34791-33697)',50.809381,-0.479861,'ParishChurch'),new Array('St Edmund, King and Martyr (34821-33712)',51.183814,-0.614953,'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'; } //