strList="

Blessed Trinity RC College (0 miles)
Zoom on map | View full information

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

St Mary of the Assumption (0.4 miles)
Zoom on map | View full information

St John the Baptist (0.7 miles)
Zoom on map | View full information

Christ the King (1.1 miles)
Zoom on map | View full information

St John the Baptist RC Primary (1.2 miles)
Zoom on map | View full information

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

"; function showResults() { document.getElementById("mapList").style.display="block"; } var records = new Array(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 John the Baptist (57117-63236)',53.804254,-2.232432,'ParishChurch'),new Array('Christ the King (57113-63236)',53.78422,-2.249912,'ParishChurch'),new Array('St John the Baptist RC Primary (38100-75689)',53.811908,-2.227036,'School'),new Array('St Mary Magdalene (57121-63343)',53.796408,-2.259169,'ParishChurch'),new Array('St John the Baptist RC Primary (38100-36204)',53.811908,-2.227036,'School'),new Array('St. Mary Magdalene`s RC Primary School (38103-36207)',53.797561,-2.263592,'School'),new Array('Christ The King RCP Schoolandnbsp, (38098-36202)',53.777424,-2.256804,'School'),new Array('St Augustine Of Canterbury School (38099-36203)',53.790652,-2.281931,'School'),new Array('Holy Trinity School (38106-36210)',53.823759,-2.224655,'School'),new Array('St Joseph`s Park Hill School (39044-37150)',53.798122,-2.285351,'School'),new Array('St John Southworth School (38108-36212)',53.832676,-2.219096,'School'),new Array('Christ Church (shared with the Methodist Community) (57307-63329)',53.8369769,-2.216671700000006,'ParishChurch'),new Array('Holy Saviour (57303-63329)',53.841292,-2.204579,'ParishChurch'),new Array('St John the Baptist (57333-63343)',53.793915,-2.315237,'ParishChurch'),new Array('St John The Baptist (Padiham) School (38015-36119)',53.793915,-2.315237,'School'),new Array('Holy Saviour School (38105-36209)',53.845154,-2.212519,'School'),new Array('Ss John Fisher And Thomas More Catholic Humanities College (38109-36127)',53.8470425,-2.1919142,'School'),new Array('Sacred Heart (57143-77554)',53.855951,-2.180167,'ParishChurch'),new Array('St Mary School (38091-36195)',53.829877,-2.340263,'School'),new Array('St Mary (Queen of Peace) (66551-71457)',53.832325,-2.339562,'Church'),new Array('Sacred Heart School (38107-36211)',53.867315,-2.176044,'School'),new Array('St Anne And St Joseph School (38084-36188)',53.750074,-2.352038,'School'),new Array('St Joseph (57037-63194)',53.759271,-2.362216,'Church'),new Array('St Anne (57035-63194)',53.751621,-2.357094,'ParishChurch'),new Array('St James` Old School Building (71226-74874)',53.7515864,-2.3652735,'Other'),new Array('St Joseph (63121-66723)',53.859312,-2.123309,'ParishChurch'),new Array('St Mary`s RC Primary School (38087-36191)',53.775987,-2.382512,'School'),new Array('St Mary (57139-63246)',53.775987,-2.382512,'ParishChurch'),new Array('St James the Less (57347-63350)',53.708145,-2.288225,'ParishChurch'),new Array('St Mary (57047-63395)',53.702925,-2.202027,'Church'),new Array('St Mary School (38113-36217)',53.701797,-2.190377,'School'),new Array('St Peter (57311-63350)',53.697725,-2.251811,'ParishChurch'),new Array('St James-the-Less School (38111-36215)',53.704354,-2.291139,'School'),new Array('St Peter School (38115-36219)',53.699087,-2.2556,'School'),new Array('Our Lady and St Hubert School (38082-36186)',53.789871,-2.396086,'School'),new Array('Mount Carmel Catholic Science College School (38096-36200)',53.744336,-2.377053,'School'),new Array('St Oswald`s RC Primary School (39039-37145)',53.7395639,-2.373827099999971,'School'),new Array('St Joseph School (38112-36216)',53.693819,-2.219767,'School'),new Array('Our Lady and St Hubert (57173-63263)',53.785263,-2.400719,'ParishChurch'),new Array('Sacred Heart RC Primary School (8851-36101)',53.753722,-2.387298,'School'),new Array('St Mary School (38114-36218)',53.703178,-2.31511,'School'),new Array('St Mary School (38090-36108)',53.744364,-2.38797,'School'),new Array('The Immaculate Conception (57179-63266)',53.703814,-2.321975,'ParishChurch'),new Array('Oakhill College School (39104-37210)',53.827799,-2.399103,'School'),new Array('All Saints Catholic Language College School (38117-36221)',53.697385,-2.306766,'School'),new Array('St Mary (57331-63342)',53.744046,-2.389191,'ParishChurch'),new Array('St Joseph School (38074-36178)',53.717423,-2.096395,'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'; } //