strList="

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

Thorneyholme Catholic Primary School (0 miles)
Zoom on map | View full information

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

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

St Peter (7.3 miles)
Zoom on map | View full information

St Mary`s Hall Preparatory School (7.3 miles)
Zoom on map | View full information

Stonyhurst College School (7.3 miles)
Zoom on map | View full information

"; function showResults() { document.getElementById("mapList").style.display="block"; } var records = new Array(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 Mary (57137-63245)',53.884121,-2.574378,'ParishChurch'),new Array('St Mary School (38075-36179)',53.883245,-2.578093,'School'),new Array('St Peter (57405-63379)',53.84669,-2.472513,'ParishChurch'),new Array('St Mary`s Hall Preparatory School (39043-37149)',53.848152,-2.467514,'School'),new Array('Stonyhurst College School (39042-37148)',53.84669,-2.472513,'School'),new Array('St Mary`s Hall Preparatory School (39043-74956)',53.848152,-2.467514,'School'),new Array('St Peter (57405-75111)',53.84669,-2.472513,'ParishChurch'),new Array('Jesuit Community (71037-74956)',53.8462541,-2.469092499999988,'Other'),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('St Joseph (57407-63379)',53.83804,-2.475283,'ParishChurch'),new Array('St Joseph School (38086-36104)',53.83804,-2.475283,'School'),new Array('St Wilfrid`s RC Primary (66526-36094)',53.832189,-2.607884,'School'),new Array('St Wilfrid (66451-74374)',53.831825,-2.607814,'ParishChurch'),new Array('St Wilfrid (66451-71338)',53.831825,-2.607814,'ParishChurch'),new Array('St. Francis Catholic Primary , Goosnargh School (37220-35321)',53.842004,-2.650718,'School'),new Array('St Francis Church (62155-66178)',53.842004,-2.650718,'ParishChurch'),new Array('St Cecilia`s RC Technology College School (38077-36181)',53.824851,-2.605135,'School'),new Array('Ss Peter and Paul (57349-63351)',53.817307,-2.527938,'ParishChurch'),new Array('St Thomas Apostle Church (62055-66128)',53.874979,-2.718868,'ParishChurch'),new Array('St. Marys Catholic Primary , Claughton-on-Brock School (37218-35319)',53.874979,-2.718868,'School'),new Array('Sts Mary and James Church (62157-66179)',53.932426,-2.75906,'ParishChurch'),new Array('Oakhill College School (39104-37210)',53.827799,-2.399103,'School'),new Array('English Martyrs (57431-74352)',53.820601,-2.412026,'ParishChurch'),new Array('St Augustine School (38097-36201)',53.815597,-2.426599,'School'),new Array('Alston Lane Catholic Primary , Longridge School (37217-35318)',53.808673,-2.612115,'School'),new Array('Our Lady and St Michael Church (62147-66174)',53.804903,-2.598728,'ParishChurch'),new Array('Castle Lane Community Centre (66051-70951)',53.898183,-2.768666,'School'),new Array('St. Mary and St. Michaels Catholic Primary , Garstang School (37219-35320)',53.898183,-2.768666,'School'),new Array('St Mary and St Michael Church (62125-66163)',53.896523,-2.770994,'ParishChurch'),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('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 Mary (57329-63341)',53.781791,-2.534809,'ParishChurch'),new Array('St Mary`s Catholic School (66448-36107)',53.781791,-2.534809,'School'),new Array('Marists (71038-74957)',53.77995319999999,-2.482060300000057,'Other'),new Array('Ladyewell House and Shrine (65014-70826)',53.800852,-2.677486,'Other'),new Array(' Our Lady Immaculate, Caton (66522-74274)',54.076466,-2.717914,'Church'),new Array('Holy Souls (57053-63205)',53.777092,-2.47609,'Church'),new Array('St Bernadette`s Catholic Primary School (38863-36969)',54.03354,-2.784261,'School'),new Array('Ss Thomas and Elizabeth Church (62047-66124)',53.981896,-2.816472,'ParishChurch'),new Array('St Bernadette Church (62191-66196)',54.03354,-2.784261,'ParishChurch'),new Array('St Boniface (63094-66707)',54.119488,-2.508736,'ParishChurch'),new Array('Our Lady and St Hubert School (38082-36186)',53.789871,-2.396086,'School'),new Array('St Wulstan (57175-63263)',53.7834891,-2.414969,'ParishChurch'),new Array('St Wulstan School (38094-36198)',53.7834891,-2.414969,'School'),new Array('St Mary Church (62083-66142)',54.111142,-2.636281,'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'; } //