strList="

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

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

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

Sacred Heart Parish House (0.6 miles)
Zoom on map | View full information

Leigh Sacred Heart Catholic Primary School (0.6 miles)
Zoom on map | View full information

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

Xii Apostles` RC Primary School (1.5 miles)
Zoom on map | View full information

"; function showResults() { document.getElementById("mapList").style.display="block"; } var records = new Array(new Array('St Joseph`s Catholic Primary School (38889-36995)',53.494222,-2.509312,'School'),new Array('St Joseph (53013-57795)',53.494222,-2.509312,'ParishChurch'),new Array('St Joseph (53013-77188)',53.494222,-2.509312,'ParishChurch'),new Array('Sacred Heart Parish House (53004-77188)',53.49847949999999,-2.5220854,'Other'),new Array('Leigh Sacred Heart Catholic Primary School (37531-35635)',53.499763,-2.521017,'School'),new Array('Sacred Heart (53007-77188)',53.498472,-2.522162,'ParishChurch'),new Array('Xii Apostles` RC Primary School (37532-35636)',53.511925,-2.528977,'School'),new Array('St Mary`s Catholic High School (37632-35736)',53.495097,-2.46463,'School'),new Array('Sacred Heart RC Primary School (37528-35632)',53.516317,-2.48308,'School'),new Array('St Ambrose Barlow (53009-77173)',53.521276,-2.49895,'ParishChurch'),new Array('St Richard (52875-57726)',53.521276,-2.49895,'ParishChurch'),new Array('St Ambrose Barlow (53009-57793)',53.521276,-2.49895,'ParishChurch'),new Array('St Ambrose Barlow Catholic Primary School (37538-35642)',53.499238,-2.460605,'School'),new Array('St Richard of Chichester (53015-57796)',53.522516,-2.492623,'ParishChurch'),new Array('St Richard of Chichester (53015-77174)',53.522516,-2.492623,'ParishChurch'),new Array('St Richard`s RC Primary School (37526-35630)',53.528264,-2.493912,'School'),new Array('Sacred Heart Catholic Primary School (37523-35627)',53.52704,-2.547856,'School'),new Array('Sacred Heart (52983-77174)',53.5270397,-2.547856000000024,'ParishChurch'),new Array('St Catherine`s Of Sienna Primary School (37536-35640)',53.47152,-2.570311,'School'),new Array('Holy Family (53001-77173)',53.504849,-2.433678,'ParishChurch'),new Array('Holy Family Catholic Primary School (38890-36996)',53.507054,-2.435148,'School'),new Array('Holy Family (53001-57789)',53.504849,-2.433678,'ParishChurch'),new Array('St Wilfrid (52999-57788)',53.52514,-2.572076,'ParishChurch'),new Array('All Saints RC Primary School (37534-35638)',53.476304,-2.592132,'School'),new Array('St Lewis Catholic Primary School (37700-35804)',53.444411,-2.545271,'School'),new Array('All Saints (52975-57784)',53.474881,-2.598108,'ParishChurch'),new Array('The Presbytery (71335-75347)',53.530095,-2.434786,'Other'),new Array('Our Lady and the Lancashire Martyrs (5902-5093)',53.530095,-2.434786,'Church'),new Array('20 Newbrook Road (71143-75370)',53.545719,-2.470531,'Other'),new Array('St Vincent de Paul (57109-63231)',53.545719,-2.470531,'ParishChurch'),new Array('Sacred Heart of Jesus (57429-63391)',53.551456,-2.522863,'ParishChurch'),new Array('St Benedict (52985-57781)',53.534614,-2.578929,'ParishChurch'),new Array('Holy Family (52979-57778)',53.5162774,-2.598757,'ParishChurch'),new Array('Sacred Heart School (38044-36148)',53.552369,-2.521859,'School'),new Array('Ince Holy Family RC Primary School (37524-35628)',53.516828,-2.600433,'School'),new Array('Holy Family RC Primary School (37533-35637)',53.50683,-2.411809,'School'),new Array('St Benedict`s Catholic Primary School (37522-35626)',53.53689,-2.584105,'School'),new Array('St Lewis (52991-77213)',53.429375,-2.497167,'ParishChurch'),new Array('St John Southworth Catholic Primary School (37537-35641)',53.49256,-2.621192,'School'),new Array('St Wilfrid`s Catholic Primary School (38892-36998)',53.493511,-2.623377,'School'),new Array('St Joseph the Worker (57195-63275)',53.45375,-2.416488,'ParishChurch'),new Array('St Joseph The Worker RC Primary School (38999-37105)',53.453798,-2.417391,'School'),new Array('St Edmund, King and Martyr (57209-5093)',53.528409,-2.410702,'Church'),new Array('St Edmund`s RC Primary School (38996-37102)',53.5271334,-2.410116900000048,'School'),new Array('St Teresa`s RC Primary School (38989-37095)',53.43780169999999,-2.43247550000001,'School'),new Array('St Teresa (57197-63275)',53.437869,-2.428844,'ParishChurch'),new Array('St William`s Catholic Primary School (37525-35629)',53.540807,-2.60791,'School'),new Array('Christ The King RC Primary School (38988-37094)',53.521059,-2.390737,'School'),new Array('Christ the King (57425-5093)',53.522694,-2.3934,'ParishChurch'),new Array('Our Lady of Lourdes (57167-63260)',53.548611,-2.418691,'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'; } //