strList="

St Thomas More Primary School (0 miles)
Zoom on map | View full information

St Edward Church (0.5 miles)
Zoom on map | View full information

(0.6 miles)
Zoom on map | View full information

St Edwards Primary School (1.3 miles)
Zoom on map | View full information

St Bernadette Church (3.1 miles)
Zoom on map | View full information

St Nicholas Owen Church (3.2 miles)
Zoom on map | View full information

Holy Trinity Church (4.7 miles)
Zoom on map | View full information

"; function showResults() { document.getElementById("mapList").style.display="block"; } var records = new Array(new Array('St Thomas More Primary School (37801-35905)',52.395444,-0.737695,'School'),new Array('St Edward Church (49561-56026)',52.394979,-0.725319,'ParishChurch'),new Array(' (71375-75188)',52.3902183,-0.7268483,'Other'),new Array('St Edwards Primary School (37800-35904)',52.388456,-0.708329,'School'),new Array('St Bernadette Church (49637-56026)',52.422854,-0.797001,'ParishChurch'),new Array('St Nicholas Owen Church (49491-56026)',52.366269,-0.680013,'ParishChurch'),new Array('Holy Trinity Church (49517-56026)',52.441323,-0.819552,'ParishChurch'),new Array('St John Ogilvie Church (49503-55993)',52.469447,-0.733607,'ParishChurch'),new Array('St Patricks Primary School (37799-35903)',52.478644,-0.710313,'School'),new Array('St Brendan Church (49501-55991)',52.490015,-0.723369,'ParishChurch'),new Array('St Brendans Primary School (37798-35902)',52.490015,-0.723369,'School'),new Array('Our Lady of the Sacred Heart Church (49663-56092)',52.302394,-0.685316,'ParishChurch'),new Array('Our Ladys Infants School School (37806-35910)',52.295052,-0.710036,'School'),new Array('Our Ladys Junior School School (37807-35911)',52.295052,-0.710036,'School'),new Array('St Edmund Campion Church (49665-56092)',52.295052,-0.710036,'ParishChurch'),new Array('Our Lady Of Walsingham Primary School (37797-35901)',52.495413,-0.697288,'School'),new Array('St Joseph`s Polish Church (71361-75832)',52.4966984,-0.687284,'Church'),new Array('Our Lady of Walsingham Church (49499-55990)',52.502614,-0.705502,'ParishChurch'),new Array('St Thomas More Chapel (49635-56088)',52.397349,-0.533461,'ParishChurch'),new Array('St Paul The Apostle Church (49655-56088)',52.3975732,-0.5327674,'ParishChurch'),new Array('St Peter Apostle Church (49639-56077)',52.298066,-0.601254,'ParishChurch'),new Array('St Joseph`s Catholic Primary School (37842-35946)',52.477364,-0.924983,'School'),new Array('Our Lady of Victories Church (56041-62244)',52.476773,-0.925233,'ParishChurch'),new Array('St Thomas A Becket Catholic School School (37805-35909)',52.270124,-0.861753,'School'),new Array('Our Lady of Perpetual Succour Church and Diocesan Shrine (49535-56012)',52.257114,-0.815057,'ParishChurch'),new Array('St Gregorys Primary School (37803-35907)',52.262928,-0.852018,'School'),new Array('The Sacred Heart Church (49617-56062)',52.258287,-0.838087,'ParishChurch'),new Array('Good Shepherd Primary School (37802-35906)',52.260665,-0.897615,'School'),new Array('St Aidan Church (49623-56065)',52.263264,-0.903485,'ParishChurch'),new Array('St Gregory the Great Church (49625-56067)',52.250576,-0.868919,'ParishChurch'),new Array('Cathedral of Our Lady Immaculate and St Thomas of Canterbury (49615-56060)',52.248294,-0.89861,'Cathedral'),new Array('Bishop`s House (4789-869)',52.247465,-0.899363,'Other'),new Array('SS Stanislaus and Lawrence (Polish Church) (49621-56064)',52.243906,-0.892801,'ParishChurch'),new Array('Most Holy Name of Jesus Church (49631-56072)',52.480797,-0.475526,'ParishChurch'),new Array('St Marys Primary School (37804-35908)',52.252844,-0.924983,'School'),new Array('Northampton DHS (71370-75176)',52.2435853,-0.9207899,'Other'),new Array('Laxton Hall Chapel (49565-56029)',52.563525,-0.574752,'ParishChurch'),new Array('St Patrick Church (49627-56069)',52.245526,-0.946032,'ParishChurch'),new Array('St Mary Church (56007-62189)',52.453586,-1.049028,'ParishChurch'),new Array('St Peter Apostle C of E Church (65235-56077)',52.225449,-0.547843,'Other'),new Array('Saints Francis and Therese Church (49619-56063)',52.215013,-0.915417,'ParishChurch'),new Array('DHS Community (71367-78452)',52.1617387,-0.708323,'Other'),new Array('Our Lady of the Most Holy Rosary Church (49675-56000)',52.374279,-1.12437,'ParishChurch'),new Array('St Joseph`s Convent (71369-78451)',52.1571229,-0.7036393,'Other'),new Array('Our Lady Help of Christians and St Lawrence Church (49629-56071)',52.15506,-0.704,'ParishChurch'),new Array('Turvey Abbey (49661-56091)',52.161878,-0.620235,'ParishChurch'),new Array('English Martyrs Catholic Primary School (37851-35955)',52.671796,-0.71963,'School'),new Array('St Joseph Church (56056-62267)',52.672264,-0.731345,'ParishChurch'),new Array('St. Benedict`s Community (42618-45147)',52.438706,-0.286682,'ParishChurch'),new Array('St Benedict`s (43716-45154)',52.43655150000001,-0.2830975,'Other')); // 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'; } //