strList="

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

St. John`s School (5.4 miles)
Zoom on map | View full information

St John The Evangelist (5.8 miles)
Zoom on map | View full information

Our Lady of Consolation and St Francis (6.1 miles)
Zoom on map | View full information

Our Lady of Consolation & St Francis (6.1 miles)
Zoom on map | View full information

Our Lady of Consolation and St Francis (6.1 miles)
Zoom on map | View full information

Our Lady of England (7.3 miles)
Zoom on map | View full information

"; function showResults() { document.getElementById("mapList").style.display="block"; } var records = new Array(new Array('St Gabriel (34763-33683)',51.021973,-0.446826,'ParishChurch'),new Array('St. John`s School (33297-33033)',51.062422,-0.340094,'School'),new Array('St John The Evangelist (34849-33777)',51.063898,-0.331992,'ParishChurch'),new Array('Our Lady of Consolation and St Francis (36469-33777)',50.982161,-0.320663,'Church'),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-34568)',50.982161,-0.320663,'Church'),new Array('Our Lady of England (34931-33767)',50.916562,-0.459342,'ParishChurch'),new Array('The Sacred Heart (34893-33748)',50.986086,-0.606883,'ParishChurch'),new Array('The Priory (71066-75029)',50.915977,-0.4596978,'Other'),new Array('St. Robert Southwell School (33298-33034)',51.08007,-0.294791,'School'),new Array('All Saints (C of E) (34905-33754)',51.077409,-0.294218,'ParishChurch'),new Array('St Hugh`s Charterhouse (34525-75683)',50.972822,-0.282655,'ParishChurch'),new Array('St Hugh`s Charterhouse (33525-75299)',50.972822,-0.282655,'ParishChurch'),new Array('Jesus Christ the Redeemer of Mankind (6219-70915)',51.14333,-0.482399,'ParishChurch'),new Array('St Cuthbert Mayne Catholic Primary School (38771-36877)',51.14333,-0.482399,'School'),new Array('St Joseph`s School (38750-74974)',51.152181,-0.481851,'School'),new Array('St Anthony and St George (65949-33748)',50.95151,-0.630553,'Other'),new Array('Corpus Christi (34991-75414)',50.931564,-0.276135,'Church'),new Array('Corpus Christi (36470-34569)',50.931564,-0.276135,'Church'),new Array('Convent of the Blessed Sacrament (71080-75415)',50.9281187,-0.2726942,'Other'),new Array('St Teresa Of Avila (65959-70935)',51.115262,-0.633948,'Church'),new Array('Christ the King (65971-33675)',50.884116,-0.326834,'Church'),new Array('Christ the King (35001-33819)',50.884116,-0.326834,'Church'),new Array('Bishop`s House (4805-885)',51.085381,-0.201472,'Other'),new Array('Our Lady of Fatima (34929-33719)',51.036674,-0.179411,'ParishChurch'),new Array('Our Lady of Fatima (34929-33766)',51.036674,-0.179411,'ParishChurch'),new Array('Christ The Lord (Ecumenical and Shared) (65940-70921)',51.0971244,-0.2057455,'Other'),new Array('The Blessed Sacrament (35002-33820)',50.878329,-0.29358,'Church'),new Array(' (71070-75059)',51.1134355,-0.2127611,'Other'),new Array('The Towers Convent (65972-33675)',50.878329,-0.29358,'Other'),new Array('St Theodore of Canterbury (65943-70921)',51.1134355,-0.2127611,'Church'),new Array('The Towers (71079-75067)',50.8778057,-0.2860822,'Other'),new Array('St Wilfrid`s Catholic School (38789-36895)',51.110892,-0.203068,'School'),new Array('Cathedral of Our Lady and St Philip Howard (65160-70856)',50.857076,-0.56103,'Cathedral'),new Array('St. Philip`s School (33281-33017)',50.856182,-0.561541,'School'),new Array('St Michael (34967-33785)',50.842464,-0.404855,'ParishChurch'),new Array('Our Lady of Lourdes (34467-70935)',51.091464,-0.7161,'ParishChurch'),new Array('Our Lady of Lourdes (34831-33717)',51.091464,-0.7161,'ParishChurch'),new Array('St Bernadette (65946-70921)',51.1020589,-0.1829335,'Church'),new Array('The Presbytery (71076-75064)',51.1020589,-0.1829335,'Other'),new Array('St Thomas More (33405-70915)',51.193333,-0.55655,'ParishChurch'),new Array('Our Lady Queen of Heaven School (33289-33025)',51.127208,-0.203878,'School'),new Array('Barrow Hills School (38734-36838)',51.151151,-0.656438,'School'),new Array('St Edmund`s Catholic Primary School (38770-36876)',51.17726,-0.605235,'School'),new Array('Our Lady Queen of Heaven (65944-70921)',51.1252102,-0.2019585,'Church'),new Array('Convent of Poor Clares (65162-70856)',50.846554,-0.539308,'Other'),new Array('St Francis Of Assisi Catholic Primary School (38786-36892)',51.108085,-0.184406,'School'),new Array('DABCEC (65227-885)',51.108627,-0.183399,'Other'),new Array('St Francis and St Anthony (65942-70921)',51.1131512,-0.1880844,'Church'),new Array('The Divine Motherhood and St Francis of Assisi (34875-33748)',50.984168,-0.742142,'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'; } //