strList="

The Immaculate Conception (0 miles)
Zoom on map | View full information

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

All Saints Catholic Language College School (0.8 miles)
Zoom on map | View full information

St Veronica School (1 miles)
Zoom on map | View full information

St James-the-Less School (1.3 miles)
Zoom on map | View full information

St James the Less (1.4 miles)
Zoom on map | View full information

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

"; function showResults() { document.getElementById("mapList").style.display="block"; } var records = new Array(new Array('The Immaculate Conception (57179-63266)',53.703814,-2.321975,'ParishChurch'),new Array('St Mary School (38114-36218)',53.703178,-2.31511,'School'),new Array('All Saints Catholic Language College School (38117-36221)',53.697385,-2.306766,'School'),new Array('St Veronica School (38116-36220)',53.689044,-2.326815,'School'),new Array('St James-the-Less School (38111-36215)',53.704354,-2.291139,'School'),new Array('St James the Less (57347-63350)',53.708145,-2.288225,'ParishChurch'),new Array('St Peter School (38115-36219)',53.699087,-2.2556,'School'),new Array('St Peter (57311-63350)',53.697725,-2.251811,'ParishChurch'),new Array('St Oswald`s RC Primary School (39039-37145)',53.7395639,-2.373827099999971,'School'),new Array('St Anne And St Joseph School (38084-36188)',53.750074,-2.352038,'School'),new Array('Mount Carmel Catholic Science College School (38096-36200)',53.744336,-2.377053,'School'),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 Mary (57331-63342)',53.744046,-2.389191,'ParishChurch'),new Array('St Mary School (38090-36108)',53.744364,-2.38797,'School'),new Array('St Joseph (57345-63349)',53.646016,-2.31869,'ParishChurch'),new Array('St Joseph School (38067-36171)',53.644555,-2.322871,'School'),new Array('St Joseph School (38112-36216)',53.693819,-2.219767,'School'),new Array('St Joseph (57037-63194)',53.759271,-2.362216,'Church'),new Array('Sacred Heart RC Primary School (8851-36101)',53.753722,-2.387298,'School'),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 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('Holly Mount School (38062-36080)',53.624086,-2.349385,'School'),new Array('Christ The King RCP Schoolandnbsp, (38098-36202)',53.777424,-2.256804,'School'),new Array('St Antony`s School (37946-36050)',53.742979,-2.449728,'School'),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 Joseph (5840-63249)',53.690309,-2.465666,'ParishChurch'),new Array('Our Lady And St John`s Catholic Arts College School (37953-36057)',53.741103,-2.453877,'School'),new Array('St John The Baptist (Padiham) School (38015-36119)',53.793915,-2.315237,'School'),new Array('St Hilda (57419-63386)',53.615492,-2.344229,'ParishChurch'),new Array('St Augustine Of Canterbury School (38099-36203)',53.790652,-2.281931,'School'),new Array('St John the Baptist (57333-63343)',53.793915,-2.315237,'ParishChurch'),new Array('St Joseph`s School (37948-36052)',53.690831,-2.4706,'School'),new Array('Royal Blackburn Hospital Chapel (71166-75212)',53.73557479999999,-2.4627143,'Other'),new Array('Our Lady Of Lourdes School (38064-36168)',53.613314,-2.315014,'School'),new Array('Christ the King (57113-63236)',53.78422,-2.249912,'ParishChurch'),new Array('Our Lady and St Hubert (57173-63263)',53.785263,-2.400719,'ParishChurch'),new Array('Our Lady and St Anselm School (38110-36214)',53.665347,-2.173939,'School'),new Array('St Edward`s School (37947-36051)',53.710625,-2.482105,'School'),new Array('Our Lady of Perpetual Succour (57069-63211)',53.726787,-2.478784,'ParishChurch'),new Array('St Anselm (57437-63395)',53.665347,-2.173939,'ParishChurch'),new Array('Our Lady Of Perpetual Succour School (37942-36046)',53.726784,-2.47723,'School'),new Array('St Edward (57145-63249)',53.710625,-2.482105,'ParishChurch'),new Array('St Mary and St Joseph`s School (37949-36053)',53.739751,-2.47342,'School'),new Array('St Wulstan (57175-63263)',53.7834891,-2.414969,'ParishChurch'),new Array('St Joseph`s Park Hill School (39044-37150)',53.798122,-2.285351,'School'),new Array('St Wulstan School (38094-36198)',53.7834891,-2.414969,'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'; } //