strList="

St Mary and St Michael (0 miles)
Zoom on map | View full information

St Boniface (9.8 miles)
Zoom on map | View full information

The Catholic Chapel (Sacred Heart) (10.2 miles)
Zoom on map | View full information

St Margaret Clitherow (10.9 miles)
Zoom on map | View full information

St Margaret Clitherow (10.9 miles)
Zoom on map | View full information

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

St Patrick (12.2 miles)
Zoom on map | View full information

"; function showResults() { document.getElementById("mapList").style.display="block"; } var records = new Array(new Array('St Mary and St Michael (63070-66693)',54.070894,-2.280848,'ParishChurch'),new Array('St Boniface (63094-66707)',54.119488,-2.508736,'ParishChurch'),new Array('The Catholic Chapel (Sacred Heart) (63053-66762)',54.023911,-2.042682,'Church'),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. Joseph School (38703-36807)',53.921249,-2.18865,'School'),new Array('St Patrick (71540-66723)',53.9124121,-2.1493069,'Church'),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 Hubert (57159-71457)',53.946948,-2.528731,'ParishChurch'),new Array('Thorneyholme Catholic Primary School (38095-36199)',53.946948,-2.528731,'School'),new Array('St Michael And St John School (38092-36196)',53.8700775,-2.391259200000036,'School'),new Array('St Michael and St John (57141-71457)',53.8700775,-2.391259200000036,'ParishChurch'),new Array('Sacred Heart School (38107-36211)',53.867315,-2.176044,'School'),new Array('St Mary Church (62083-66142)',54.111142,-2.636281,'ParishChurch'),new Array('Sacred Heart (57143-77554)',53.855951,-2.180167,'ParishChurch'),new Array('St Joseph Church (62097-66149)',54.202242,-2.5956,'ParishChurch'),new Array('Ss John Fisher And Thomas More Catholic Humanities College (38109-36127)',53.8470425,-2.1919142,'School'),new Array('Holy Saviour School (38105-36209)',53.845154,-2.212519,'School'),new Array('St Joseph (63121-66723)',53.859312,-2.123309,'ParishChurch'),new Array('Holy Saviour (57303-63329)',53.841292,-2.204579,'ParishChurch'),new Array('Christ Church (shared with the Methodist Community) (57307-63329)',53.8369769,-2.216671700000006,'ParishChurch'),new Array('St Mary (Queen of Peace) (66551-71457)',53.832325,-2.339562,'Church'),new Array('St John Southworth School (38108-36212)',53.832676,-2.219096,'School'),new Array('St Mary School (38091-36195)',53.829877,-2.340263,'School'),new Array('St Joseph (63132-66729)',53.916528,-1.954953,'ParishChurch'),new Array('St Mary`s Hall Preparatory School (39043-74956)',53.848152,-2.467514,'School'),new Array('Holy Trinity School (38106-36210)',53.823759,-2.224655,'School'),new Array('St Mary`s Hall Preparatory School (39043-37149)',53.848152,-2.467514,'School'),new Array('Jesuit Community (71037-74956)',53.8462541,-2.469092499999988,'Other'),new Array('St Peter (57405-63379)',53.84669,-2.472513,'ParishChurch'),new Array('Stonyhurst College School (39042-37148)',53.84669,-2.472513,'School'),new Array('St Peter (57405-75111)',53.84669,-2.472513,'ParishChurch'),new Array('Oakhill College School (39104-37210)',53.827799,-2.399103,'School'),new Array('St Mary (57137-63245)',53.884121,-2.574378,'ParishChurch'),new Array(' Our Lady Immaculate, Caton (66522-74274)',54.076466,-2.717914,'Church'),new Array('St Mary School (38075-36179)',53.883245,-2.578093,'School'),new Array('Our Lady of Mount Carmel (63041-66677)',53.914434,-1.937271,'ParishChurch'),new Array('St Joseph (57407-63379)',53.83804,-2.475283,'ParishChurch'),new Array('St Joseph School (38086-36104)',53.83804,-2.475283,'School'),new Array('St John the Baptist RC Primary (38100-75689)',53.811908,-2.227036,'School'),new Array('St John the Baptist RC Primary (38100-36204)',53.811908,-2.227036,'School'),new Array('English Martyrs (57431-74352)',53.820601,-2.412026,'ParishChurch'),new Array('English Martyrs (63013-66662)',53.944762,-1.881115,'ParishChurch'),new Array('St John the Baptist (57117-63236)',53.804254,-2.232432,'ParishChurch'),new Array('St Augustine School (38097-36201)',53.815597,-2.426599,'School'),new Array('St. Mary Magdalene`s RC Primary School (38103-36207)',53.797561,-2.263592,'School'),new Array('St Joseph`s Park Hill School (39044-37150)',53.798122,-2.285351,'School'),new Array('St Mary Magdalene (57121-63343)',53.796408,-2.259169,'ParishChurch'),new Array('St John The Baptist (Padiham) School (38015-36119)',53.793915,-2.315237,'School')); // 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'; } //