strList="

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

Our Lady of Mount Carmel (0.7 miles)
Zoom on map | View full information

Holy Family Catholic High School (3.2 miles)
Zoom on map | View full information

Our Lady Of Victories School (3.6 miles)
Zoom on map | View full information

English Martyrs (3.6 miles)
Zoom on map | View full information

St Anne (3.7 miles)
Zoom on map | View full information

St. Anne School (3.7 miles)
Zoom on map | View full information

"; function showResults() { document.getElementById("mapList").style.display="block"; } var records = new Array(new Array('St Joseph (63132-66729)',53.916528,-1.954953,'ParishChurch'),new Array('Our Lady of Mount Carmel (63041-66677)',53.914434,-1.937271,'ParishChurch'),new Array('Holy Family Catholic High School (38644-36748)',53.876088,-1.916415,'School'),new Array('Our Lady Of Victories School (38657-36761)',53.86672,-1.925405,'School'),new Array('English Martyrs (63013-66662)',53.944762,-1.881115,'ParishChurch'),new Array('St Anne (63083-66681)',53.869612,-1.909858,'ParishChurch'),new Array('St. Anne School (38663-36767)',53.869612,-1.909858,'School'),new Array('St Anne (63083-66700)',53.869612,-1.909858,'ParishChurch'),new Array('St. Stephen School (38724-36828)',53.962559,-2.023832,'School'),new Array('St Stephen (63191-66762)',53.96381,-2.019733,'ParishChurch'),new Array('St. Joseph School (38691-36795)',53.857375,-1.915646,'School'),new Array('Sacred Heart (63059-66687)',53.927822,-1.830329,'ParishChurch'),new Array('Our Lady of Lourdes (63032-66729)',53.834204,-1.94593,'Church'),new Array('Our Lady of Lourdes (63032-66672)',53.834204,-1.94593,'Church'),new Array('Sacred Heart School (38659-36763)',53.926528,-1.807157,'School'),new Array('St. Joseph School (38690-36794)',53.849769,-1.828775,'School'),new Array('Sacred Heart (63050-66682)',53.842389,-1.830648,'ParishChurch'),new Array('St Patrick (71540-66723)',53.9124121,-2.1493069,'Church'),new Array('St Joseph (63121-66723)',53.859312,-2.123309,'ParishChurch'),new Array('St Mary and St Monica (63165-66748)',53.829032,-1.821157,'Church'),new Array('St Mary and St Monica (63165-66682)',53.829032,-1.821157,'Church'),new Array('The Catholic Chapel (Sacred Heart) (63053-66762)',54.023911,-2.042682,'Church'),new Array('SS John Fisher and Thomas More (63068-66692)',53.905181,-1.743861,'ParishChurch'),new Array('St. Walburga School (38728-36832)',53.833528,-1.789487,'School'),new Array('St Walburga (63201-66767)',53.833718,-1.784821,'ParishChurch'),new Array('St Aidan (63078-66697)',53.842707,-1.766371,'ParishChurch'),new Array('St Aidan (63078-66767)',53.842707,-1.766371,'ParishChurch'),new Array('St Cuthbert (63101-66711)',53.813143,-1.804898,'Church'),new Array('First Martyrs of Rome (63018-66665)',53.813143,-1.804898,'ParishChurch'),new Array('St Cuthbert (63101-66665)',53.813143,-1.804898,'Church'),new Array('St. Joseph School (38703-36807)',53.921249,-2.18865,'School'),new Array('Sacred Heart School (38107-36211)',53.867315,-2.176044,'School'),new Array('St Mary’s Menston Catholic Voluntary Academy (38708-36812)',53.881768,-1.727834,'School'),new Array('St. Matthew School (38714-36818)',53.799794,-1.821084,'School'),new Array('St Matthew (63169-66750)',53.800307,-1.821385,'ParishChurch'),new Array('St Bede’s and St Joseph’s Catholic College (38669-36773)',53.815225,-1.787407,'School'),new Array('St Anthony (38666-36770)',53.837176,-1.751327,'School'),new Array('Sacred Heart (57143-77554)',53.855951,-2.180167,'ParishChurch'),new Array('St. Cuthbert and The First Martyrs School (38674-36778)',53.809271,-1.78484,'School'),new Array('Our Lady of Lourdes and St William (63038-66675)',53.80234,-1.785119,'ParishChurch'),new Array('Our Lady and All Saints (63011-66661)',53.906701,-1.694429,'ParishChurch'),new Array('St Joseph`s Catholic Primary School Otley, A Voluntary Academy (38686-36790)',53.906072,-1.694327,'School'),new Array('St. William School (38731-36835)',53.796738,-1.788077,'School'),new Array('Ss John Fisher And Thomas More Catholic Humanities College (38109-36127)',53.8470425,-2.1919142,'School'),new Array('St Anthony (63085-66701)',53.784907,-1.807381,'ParishChurch'),new Array('St Margaret Clitherow (63153-66741)',54.070125,-2.013350500000001,'Church'),new Array('St Margaret Clitherow (63153-66762)',54.070125,-2.013350500000001,'Church'),new Array('St. Anthony School (38665-36769)',53.784907,-1.807381,'School'),new Array('Ss Peter and Paul School (38662-36766)',53.86545,-1.699215,'School'),new Array('SS Peter and Paul (63074-66695)',53.86545,-1.699215,'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'; } //