strList="

St Cuthbert`s RC High School (0 miles)
Zoom on map | View full information

Holy Family RC Primary School (0.6 miles)
Zoom on map | View full information

Holy Family (0.7 miles)
Zoom on map | View full information

Sacred Heart RC Primary School (1.4 miles)
Zoom on map | View full information

St Gabriel`s RC Primary School (1.5 miles)
Zoom on map | View full information

St John The Baptist RC Primary School (1.6 miles)
Zoom on map | View full information

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

"; function showResults() { document.getElementById("mapList").style.display="block"; } var records = new Array(new Array('St Cuthbert`s RC High School (38986-37092)',53.590297,-2.139054,'School'),new Array('Holy Family RC Primary School (38981-37087)',53.594235,-2.152892,'School'),new Array('Holy Family (57353-63354)',53.596307,-2.152847,'ParishChurch'),new Array('Sacred Heart RC Primary School (38980-37086)',53.610599,-2.133559,'School'),new Array('St Gabriel`s RC Primary School (38977-37083)',53.587859,-2.175181,'School'),new Array('St John The Baptist RC Primary School (38978-37084)',53.610526,-2.156336,'School'),new Array('Sacred Heart (57355-63354)',53.6135713,-2.1322341,'ParishChurch'),new Array('St Gabriel and the Angels (57133-63243)',53.593327,-2.179116,'ParishChurch'),new Array('St John the Baptist (6059-63243)',53.5928148,-2.1815392,'ParishChurch'),new Array('St Aidan`s and St Oswald`s RC Primary School (38965-37071)',53.563288,-2.12195,'School'),new Array('Ss Aidan and Oswald (57367-63360)',53.562387,-2.120453,'ParishChurch'),new Array('St Mary and St James Ukrainian Catholic Church (71538-76466)',53.6199287,-2.1543283,'Other'),new Array('St Joseph (57397-63375)',53.568947,-2.09905,'ParishChurch'),new Array('St Joseph`s RC Primary School (38962-37068)',53.568947,-2.09905,'School'),new Array('St Patrick (57359-63356)',53.622324,-2.151995,'ParishChurch'),new Array('St Patrick`s RC Primary School (38979-37085)',53.626397,-2.151496,'School'),new Array('Cardinal Langley RC High School (38985-37091)',53.564036,-2.183507,'School'),new Array('St John Fisher RC Primary School (38987-37093)',53.559507,-2.182883,'School'),new Array('Alice Ingham RC Primary School (38983-37089)',53.630208,-2.136872,'School'),new Array('299 Boarshaw Road (71142-75369)',53.558085,-2.182247,'Other'),new Array('St Herbert (57135-63270)',53.546996,-2.146002,'ParishChurch'),new Array('All Saints Presbytery (71156-75388)',53.5469252,-2.1239382,'Other'),new Array('HMP Buckley Hall (71164-75209)',53.6349775,-2.1450527,'Other'),new Array('St Herbert`s RC Primary School (38964-37070)',53.546397,-2.147799,'School'),new Array('St Theresa`s RC Primary School (71031-74613)',53.5549607,-2.091370999999981,'School'),new Array('St Vincent De Paul RC Primary School (38982-37088)',53.622776,-2.194194,'School'),new Array('St Agnes and St John Fisher (5995-63326)',53.5541851,-2.1915737,'ParishChurch'),new Array('Our Lady (57327-63339)',53.563238,-2.072976,'ParishChurch'),new Array('St Joseph (57183-63268)',53.591811,-2.220311,'ParishChurch'),new Array('St Joseph`s RC Primary School (38984-37090)',53.586468,-2.222456,'School'),new Array('St Vincent de Paul (57361-63357)',53.628156,-2.191149,'ParishChurch'),new Array('Holy Family RC and CE College (71033-74615)',53.58658759999999,-2.22362069999997,'School'),new Array('Newman RC College (66498-71426)',53.539094,-2.150942,'Other'),new Array('Newman RC College (71032-74614)',53.5384904,-2.152308100000028,'School'),new Array('Our Lady of Mount Carmel and St Patrick (57317-75679)',53.53918,-2.118989,'ParishChurch'),new Array('St Patrick`s RC Primary School (38968-37074)',53.537823,-2.123099,'School'),new Array('St Peter (57293-63324)',53.548323,-2.19327,'ParishChurch'),new Array('St Anne`s RC Primary School (38967-37073)',53.54428,-2.088937,'School'),new Array('Mother Most Admirable Convent (73167-75800)',53.555451,-2.2114553,'Other'),new Array('St Peter`s RC Primary School (38973-37079)',53.544456,-2.191737,'School'),new Array('Our Lady of the Assumption (57299-63326)',53.55589,-2.21258,'ParishChurch'),new Array('St Mary`s RC Primary School (38974-37080)',53.555659,-2.210732,'School'),new Array('St Mary of the Annunciation (57207-63356)',53.642459,-2.104555,'Church'),new Array('St Mary`s RC Primary School (38972-37078)',53.645665,-2.102977,'School'),new Array('Corpus Christi (57187-63270)',53.529842,-2.139909,'ParishChurch'),new Array('St Edward`s RC Primary School (38963-37069)',53.542225,-2.070961,'School'),new Array('St Thomas More (57295-63324)',53.537052,-2.194131,'ParishChurch'),new Array('Corpus Christi RC Primary School (38961-37067)',53.528097,-2.139514,'School'),new Array('St Thomas More RC Primary School (38976-37082)',53.534654,-2.18863,'School'),new Array('Polish Catholic Centre (71151-75382)',53.5264057,-2.1316323,'Other')); // 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'; } //