strList="

St Mary`s Catholic School (0 miles)
Zoom on map | View full information

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

St. Paul`s R.C.Primary School (1.2 miles)
Zoom on map | View full information

Marists (2.2 miles)
Zoom on map | View full information

Holy Souls School (2.2 miles)
Zoom on map | View full information

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

Holy Souls (2.4 miles)
Zoom on map | View full information

"; function showResults() { document.getElementById("mapList").style.display="block"; } var records = new Array(new Array('St Mary`s Catholic School (66448-36107)',53.781791,-2.534809,'School'),new Array('St Mary (57329-63341)',53.781791,-2.534809,'ParishChurch'),new Array('St. Paul`s R.C.Primary School (38037-36141)',53.764293,-2.541277,'School'),new Array('Marists (71038-74957)',53.77995319999999,-2.482060300000057,'Other'),new Array('Holy Souls School (37941-36045)',53.770221,-2.484732,'School'),new Array('Sacred Heart School (37943-36047)',53.753058,-2.503158,'School'),new Array('Holy Souls (57053-63205)',53.777092,-2.47609,'Church'),new Array('Sacred Heart (5756-63204)',53.75073,-2.506651,'ParishChurch'),new Array('Franciscan Convent (71123-75392)',53.7559793,-2.4927918,'Other'),new Array('Franciscan Convent (71123-75339)',53.7559793,-2.4927918,'Other'),new Array('Ss Peter and Paul (57349-63351)',53.817307,-2.527938,'ParishChurch'),new Array('Good Shepherd (57059-63205)',53.757723,-2.484996,'Church'),new Array('Our Lady and St Michael Church (62147-66174)',53.804903,-2.598728,'ParishChurch'),new Array('St Anne (57055-63204)',53.746849,-2.487588,'Church'),new Array('St Anne`s School (37945-36049)',53.747589,-2.486868,'School'),new Array('St Augustine (5814-63343)',53.765956,-2.461421,'ParishChurch'),new Array('St Alban (57057-63205)',53.752982,-2.474765,'ParishChurch'),new Array('St Alban`s School (37944-36048)',53.752252,-2.473834,'School'),new Array('St Peter`s RC Primary School (39038-37144)',53.7370117,-2.507712099999935,'School'),new Array('Ss Mary and John (Pleasington Priory) (6039-63210)',53.735022,-2.542841,'Church'),new Array('St Peter in Chains (71026-63210)',53.736482,-2.505094,'Church'),new Array('St Bede`s RCHS (9520-74610)',53.72922579999999,-2.51511430000005,'School'),new Array('St Mary School (38088-36192)',53.802326,-2.450257,'School'),new Array('St Mary (Our Lady Assumed into Heaven) (57203-63278)',53.801114,-2.450007,'ParishChurch'),new Array('Alston Lane Catholic Primary , Longridge School (37217-35318)',53.808673,-2.612115,'School'),new Array('St Mary and St Joseph`s School (37949-36053)',53.739751,-2.47342,'School'),new Array('St Bede`s Catholic Sports College School (38040-36144)',53.727097,-2.516595,'School'),new Array('St John Vianney (57067-63210)',53.727841,-2.508159,'ParishChurch'),new Array('St Cecilia`s RC Technology College School (38077-36181)',53.824851,-2.605135,'School'),new Array('Royal Blackburn Hospital Chapel (71166-75212)',53.73557479999999,-2.4627143,'Other'),new Array('Our Lady And St John`s Catholic Arts College School (37953-36057)',53.741103,-2.453877,'School'),new Array('St Antony`s School (37946-36050)',53.742979,-2.449728,'School'),new Array('Our Lady of Perpetual Succour (57069-63211)',53.726787,-2.478784,'ParishChurch'),new Array('St Catherine`s RC Primary School (37545-35649)',53.740907,-2.619154,'School'),new Array('St Joseph (52853-57715)',53.740907,-2.619154,'ParishChurch'),new Array('Our Lady Of Perpetual Succour School (37942-36046)',53.726784,-2.47723,'School'),new Array('St Wilfrid`s RC Primary (66526-36094)',53.832189,-2.607884,'School'),new Array('St Wilfrid (66451-71338)',53.831825,-2.607814,'ParishChurch'),new Array('St Joseph School (38086-36104)',53.83804,-2.475283,'School'),new Array('St Wilfrid (66451-74374)',53.831825,-2.607814,'ParishChurch'),new Array('St Joseph (57407-63379)',53.83804,-2.475283,'ParishChurch'),new Array('St Mary and St John Southworth (57395-63374)',53.7580366,-2.6425129,'ParishChurch'),new Array('St Wulstan School (38094-36198)',53.7834891,-2.414969,'School'),new Array('St Joseph`s Catholic Primary School (37552-35656)',53.7294638,-2.616722900000013,'School'),new Array('St Wulstan (57175-63263)',53.7834891,-2.414969,'ParishChurch'),new Array('St Charles School (38085-36189)',53.766679,-2.417865,'School'),new Array('St Charles Borromeo (57351-63352)',53.76603,-2.418927,'ParishChurch'),new Array('St Augustine School (38097-36201)',53.815597,-2.426599,'School'),new Array('Blessed Sacrament Catholic Primary School (37211-35312)',53.775849,-2.659496,'School'),new Array('St. Maria Goretti Catholic Primary School (37214-35315)',53.783349,-2.658794,'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'; } //