strList="

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

St. John Fisher School (0.8 miles)
Zoom on map | View full information

St. Robert School (0.9 miles)
Zoom on map | View full information

St Robert (1.5 miles)
Zoom on map | View full information

St Mary (1.8 miles)
Zoom on map | View full information

St. Joseph School (1.9 miles)
Zoom on map | View full information

St Joseph (1.9 miles)
Zoom on map | View full information

"; function showResults() { document.getElementById("mapList").style.display="block"; } var records = new Array(new Array('St Aelred (63076-66696)',53.992236,-1.502629,'ParishChurch'),new Array('St. John Fisher School (38681-66720)',53.984056,-1.5179,'School'),new Array('St. Robert School (38723-36827)',54.00023,-1.521267,'School'),new Array('St Robert (63022-66667)',53.988971,-1.538112,'ParishChurch'),new Array('St Mary (63159-66745)',54.01106,-1.471947,'ParishChurch'),new Array('St. Joseph School (38700-36804)',54.004669,-1.544148,'School'),new Array('St Joseph (63134-66730)',54.005819,-1.544272,'ParishChurch'),new Array('St. Mary School (38711-36815)',54.014787,-1.469275,'School'),new Array('Wood Hall Carmelite Monastery (73044-78342)',53.9166107,-1.4409681,'Other'),new Array('Carmelite Monastery Chapel (73143-66736)',53.9166107,-1.4409681,'Other'),new Array('Carmelite Monastery Chapel (73143-78342)',53.9166107,-1.4409681,'Other'),new Array('St. Joseph School (38688-36792)',53.93431,-1.389615,'School'),new Array('St Joseph (63145-66736)',53.928878,-1.387212,'ParishChurch'),new Array('St Joseph (63125-66725)',54.065797,-1.603435,'ParishChurch'),new Array('St Paul the Apostle (63186-66657)',53.890224,-1.51725,'ParishChurch'),new Array('St Paul the Apostle (63186-66759)',53.890224,-1.51725,'ParishChurch'),new Array('St Edward`s Catholic Primary School (38870-36976)',53.902008,-1.357074,'School'),new Array('St John’s Catholic School for the Deaf (38684-36788)',53.900023,-1.350697,'School'),new Array('St Edward (63108-66715)',53.894598,-1.347982,'ParishChurch'),new Array('St Joseph`s Catholic Primary School Otley, A Voluntary Academy (38686-36790)',53.906072,-1.694327,'School'),new Array('Our Lady and All Saints (63011-66661)',53.906701,-1.694429,'ParishChurch'),new Array('St. Paul School (38720-36824)',53.852205,-1.557738,'School'),new Array('St. Wilfrid School (38730-36834)',54.137347,-1.528504,'School'),new Array('St Wilfrid (63205-66769)',54.138961,-1.525425,'ParishChurch'),new Array('Our Lady of Good Counsel (63030-66671)',53.842241,-1.442414,'Church'),new Array('Immaculate Heart Of Mary School (38650-36754)',53.837546,-1.536436,'School'),new Array('St. Urban School (38727-36831)',53.839484,-1.559468,'School'),new Array('Immaculate Heart of Mary (63003-66657)',53.837967,-1.538528,'ParishChurch'),new Array('Cardinal Heenan Catholic High School (38638-36742)',53.839484,-1.559468,'School'),new Array('Holy Name School (38647-36751)',53.847208,-1.604424,'School'),new Array('Holy Name of Jesus (62993-66744)',53.846635,-1.602271,'Church'),new Array('SS John Fisher and Thomas More (63068-66692)',53.905181,-1.743861,'ParishChurch'),new Array('Our Lady Of Good Counsel School (38655-36759)',53.823908,-1.468392,'School'),new Array('St Mary (63157-66744)',53.83976,-1.633566,'ParishChurch'),new Array('Address: Broadgate Lane Horsforth School (38706-36810)',53.839186,-1.631094,'School'),new Array('SS Peter and Paul (63074-66695)',53.86545,-1.699215,'ParishChurch'),new Array('Ss Peter and Paul School (38662-36766)',53.86545,-1.699215,'School'),new Array('St Mary’s Menston Catholic Voluntary Academy (38708-36812)',53.881768,-1.727834,'School'),new Array('Our Lady of Czestochowa (63028-66670)',53.819396,-1.532999,'ParishChurch'),new Array('St. Joseph School (38701-36805)',53.884856,-1.267106,'School'),new Array('Our Lady Immaculate (63020-66666)',54.084024,-1.755419,'ParishChurch'),new Array('Mount St Joseph`s (71395-78357)',53.8204224,-1.5704571,'Other'),new Array('St Joseph (63143-66735)',53.884089,-1.265217,'ParishChurch'),new Array('St Augustine of Canterbury (63090-66704)',53.81588,-1.51696,'ParishChurch'),new Array('Hinsley Hall (65230-881)',53.819255,-1.570267,'Other'),new Array('Diocese of Leeds (4801-881)',53.818833,-1.567796,'Other'),new Array('St. Augustine School (38667-36771)',53.814137,-1.506166,'School'),new Array('St Urban (63199-66673)',53.818887,-1.572357,'Church'),new Array('St Gregory the Great (63114-74283)',53.817355,-1.45034,'ParishChurch'),new Array('St Gregory the Great (63114-66718)',53.817355,-1.45034,'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'; } //