strList="

All Saints Church (0 miles)
Zoom on map | View full information

St Wilfred Church (6.8 miles)
Zoom on map | View full information

St Wilfred Church (6.8 miles)
Zoom on map | View full information

St John The Baptist Catholic(a) Primary School (6.9 miles)
Zoom on map | View full information

The Faber School (6.9 miles)
Zoom on map | View full information

St John the Baptist Church (6.9 miles)
Zoom on map | View full information

Our Lady and St Teresa of Lisieux Church (8.1 miles)
Zoom on map | View full information

"; function showResults() { document.getElementById("mapList").style.display="block"; } var records = new Array(new Array('All Saints Church (55947-62107)',53.016486,-1.738521,'ParishChurch'),new Array('St Wilfred Church (36112-34388)',53.015448,-1.902833,'Church'),new Array('St Wilfred Church (36112-34415)',53.015448,-1.902833,'Church'),new Array('St John The Baptist Catholic(a) Primary School (38810-36916)',52.979491,-1.891803,'School'),new Array('The Faber School (36712-34811)',53.00905,-1.905009,'School'),new Array('St John the Baptist Church (36114-34389)',52.979491,-1.891803,'ParishChurch'),new Array('Our Lady and St Teresa of Lisieux Church (56079-62303)',53.074953,-1.569022,'ParishChurch'),new Array('St Joseph`s School (36731-34830)',52.900573,-1.872748,'School'),new Array('St Mary Church (35936-34299)',52.896826,-1.865415,'ParishChurch'),new Array('St Thomas a Becket Church (36462-34563)',52.876692,-1.802435,'ParishChurch'),new Array('St Giles School (36718-34817)',52.985373,-1.987819,'School'),new Array('St Margaret Clitherow Church (55987-62161)',52.9809986,-1.489604299999996,'Other'),new Array('St Giles Church (36166-34415)',52.985373,-1.987819,'ParishChurch'),new Array('St Margaret Clitherow Church (55987-62113)',52.9809986,-1.489604299999996,'Other'),new Array('St Elizabeth`s Catholic Primary School (37815-35919)',53.030685,-1.481861,'School'),new Array('Our Lady of Perpetual Succour Church (55952-62113)',53.01847,-1.482245599999942,'ParishChurch'),new Array('Painsley School (36743-34842)',52.981724,-1.988907,'School'),new Array('Church of the Holy Family Church (55986-62159)',52.952501,-1.501907,'ParishChurch'),new Array('Christ the King Church (55977-62145)',52.928242,-1.518176,'ParishChurch'),new Array('St Thomas of Canterbury Church (36094-34415)',52.955107,-1.986398,'Church'),new Array('St Thomas` School (36730-34829)',52.955107,-1.986398,'School'),new Array('St Thomas of Canterbury Church (36094-34379)',52.955107,-1.986398,'Church'),new Array('Our Lady of Lourdes Church (55980-62149)',52.906212,-1.539222,'ParishChurch'),new Array('St Christopher Church (36080-34372)',52.855564,-1.691356,'ParishChurch'),new Array('St Christopher Church (36080-34302)',52.855564,-1.691356,'ParishChurch'),new Array('Our Lady and St Joseph Church (56044-62250)',53.14104,-1.551604,'ParishChurch'),new Array('The Briars Catholc Youth Retreat Centre (65851-70904)',53.076148,-1.476822,'Other'),new Array('Saint Benedict Catholic Voluntary Academy (37813-35917)',52.943299,-1.485926,'School'),new Array('St Mary`s Catholic Primary School (37812-35916)',52.939371,-1.485838,'School'),new Array('St Joseph`s Catholic Primary School (38912-37018)',53.141571,-1.542419,'School'),new Array('St Mary Church (55984-62155)',52.927376,-1.478974,'ParishChurch'),new Array('St Joseph Church (55983-62153)',52.914569,-1.48173,'ParishChurch'),new Array('St Joseph`s Catholic Primary School (37811-35915)',52.913764,-1.480505,'School'),new Array('St George`s Catholic Primary School (37810-35914)',52.894374,-1.503643,'School'),new Array('St Mary`s Church (65108-34525)',52.951453,-2.032762,'Church'),new Array('St Mary Church (36364-34514)',53.10329,-2.025291,'ParishChurch'),new Array('St Alban Church (55981-62151)',52.931087,-1.44864,'ParishChurch'),new Array('St George and All Soldier Saints Church (55982-62152)',52.899354,-1.480574,'ParishChurch'),new Array('St Mary`s School (36722-34821)',53.103514,-2.03131,'School'),new Array('St Alban`s Catholic Primary School (37809-35913)',52.927165,-1.438485,'School'),new Array('English Martyrs Church (55949-62110)',53.215164,-1.677175,'ParishChurch'),new Array('Holy Spirit Church (55979-62147)',52.879432,-1.490723,'ParishChurch'),new Array('St Filumena`s School (36716-34815)',52.981325,-2.071882,'School'),new Array('St Filumena Church (36352-34508)',52.981325,-2.071882,'ParishChurch'),new Array('St Joseph Church (56060-62274)',53.055393,-1.404355,'ParishChurch'),new Array('St Modwen`s School (36713-34812)',52.816093,-1.652806,'School'),new Array('Holy Rosary Church (55961-62126)',52.827496,-1.584297,'ParishChurch'),new Array('Sacred Heart Church (36063-34363)',52.818943,-1.88364,'ParishChurch'),new Array('Sacred Heart Church (36063-34299)',52.818943,-1.88364,'ParishChurch'),new Array('English Martyrs Church (55978-62146)',52.89982,-1.432922,'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'; } //