strList="

Sacred Heart (0 miles)
Zoom on map | View full information

Ss John Fisher And Thomas More Catholic Humanities College (0.8 miles)
Zoom on map | View full information

Sacred Heart School (0.8 miles)
Zoom on map | View full information

Holy Saviour (1.4 miles)
Zoom on map | View full information

Holy Saviour School (1.5 miles)
Zoom on map | View full information

Christ Church (shared with the Methodist Community) (2 miles)
Zoom on map | View full information

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

"; function showResults() { document.getElementById("mapList").style.display="block"; } var records = new Array(new Array('Sacred Heart (57143-77554)',53.855951,-2.180167,'ParishChurch'),new Array('Ss John Fisher And Thomas More Catholic Humanities College (38109-36127)',53.8470425,-2.1919142,'School'),new Array('Sacred Heart School (38107-36211)',53.867315,-2.176044,'School'),new Array('Holy Saviour (57303-63329)',53.841292,-2.204579,'ParishChurch'),new Array('Holy Saviour School (38105-36209)',53.845154,-2.212519,'School'),new Array('Christ Church (shared with the Methodist Community) (57307-63329)',53.8369769,-2.216671700000006,'ParishChurch'),new Array('St Joseph (63121-66723)',53.859312,-2.123309,'ParishChurch'),new Array('St John Southworth School (38108-36212)',53.832676,-2.219096,'School'),new Array('Holy Trinity School (38106-36210)',53.823759,-2.224655,'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('St Patrick (71540-66723)',53.9124121,-2.1493069,'Church'),new Array('St John the Baptist (57117-63236)',53.804254,-2.232432,'ParishChurch'),new Array('St. Joseph School (38703-36807)',53.921249,-2.18865,'School'),new Array('Blessed Trinity RC College (39041-37147)',53.7942134,-2.230508099999952,'School'),new Array('St Mary School (38102-36206)',53.791455,-2.229977,'School'),new Array('St Mary of the Assumption (57119-63236)',53.788744,-2.235169,'ParishChurch'),new Array('St Mary Magdalene (57121-63343)',53.796408,-2.259169,'ParishChurch'),new Array('St. Mary Magdalene`s RC Primary School (38103-36207)',53.797561,-2.263592,'School'),new Array('Christ the King (57113-63236)',53.78422,-2.249912,'ParishChurch'),new Array('St Joseph`s Park Hill School (39044-37150)',53.798122,-2.285351,'School'),new Array('St Augustine Of Canterbury School (38099-36203)',53.790652,-2.281931,'School'),new Array('Christ The King RCP Schoolandnbsp, (38098-36202)',53.777424,-2.256804,'School'),new Array('St Mary (Queen of Peace) (66551-71457)',53.832325,-2.339562,'Church'),new Array('St Mary School (38091-36195)',53.829877,-2.340263,'School'),new Array('St John The Baptist (Padiham) School (38015-36119)',53.793915,-2.315237,'School'),new Array('St John the Baptist (57333-63343)',53.793915,-2.315237,'ParishChurch'),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('Oakhill College School (39104-37210)',53.827799,-2.399103,'School'),new Array('Our Lady of Lourdes (63032-66672)',53.834204,-1.94593,'Church'),new Array('St. Stephen School (38724-36828)',53.962559,-2.023832,'School'),new Array('Our Lady of Lourdes (63032-66729)',53.834204,-1.94593,'Church'),new Array('English Martyrs (57431-74352)',53.820601,-2.412026,'ParishChurch'),new Array('Our Lady and St Hubert School (38082-36186)',53.789871,-2.396086,'School'),new Array('St Mary (57139-63246)',53.775987,-2.382512,'ParishChurch'),new Array('St Mary`s RC Primary School (38087-36191)',53.775987,-2.382512,'School'),new Array('St Stephen (63191-66762)',53.96381,-2.019733,'ParishChurch'),new Array('St Joseph (57037-63194)',53.759271,-2.362216,'Church'),new Array('St Anne And St Joseph School (38084-36188)',53.750074,-2.352038,'School'),new Array('St Joseph (63132-66729)',53.916528,-1.954953,'ParishChurch'),new Array('St Anne (57035-63194)',53.751621,-2.357094,'ParishChurch'),new Array('St Joseph (57417-63385)',53.716997,-2.097093,'ParishChurch'),new Array('St Joseph School (38074-36178)',53.717423,-2.096395,'School'),new Array('Our Lady and St Hubert (57173-63263)',53.785263,-2.400719,'ParishChurch'),new Array('Our Lady Of Victories School (38657-36761)',53.86672,-1.925405,'School'),new Array('St Augustine School (38097-36201)',53.815597,-2.426599,'School'),new Array('St James` Old School Building (71226-74874)',53.7515864,-2.3652735,'Other'),new Array('St Mary (57047-63395)',53.702925,-2.202027,'Church'),new Array('St Mary School (38113-36217)',53.701797,-2.190377,'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'; } //