strList="

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

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

The Divine Mercy RC Primary School (0.5 miles)
Zoom on map | View full information

St Cuthbert (0.8 miles)
Zoom on map | View full information

St Edward (0.8 miles)
Zoom on map | View full information

Xaverian College School (0.8 miles)
Zoom on map | View full information

The English Martyrs (0.9 miles)
Zoom on map | View full information

"; function showResults() { document.getElementById("mapList").style.display="block"; } var records = new Array(new Array('St Kentigern (57257-63305)',53.444038,-2.228867,'ParishChurch'),new Array('St Kentigern`s RC Primary School (38956-37062)',53.442474,-2.236035,'School'),new Array('The Divine Mercy RC Primary School (71030-74612)',53.4505906,-2.235769699999992,'School'),new Array('St Cuthbert (57291-63322)',53.432222,-2.229401,'ParishChurch'),new Array('St Edward (57285-63311)',53.455162,-2.223409,'ParishChurch'),new Array('Xaverian College School (39094-37200)',53.45548,-2.222328,'School'),new Array('The English Martyrs (57287-63320)',53.446917,-2.251293,'ParishChurch'),new Array('Polish Church of Divine Mercy, Moss Side Parish Church (5969-75381)',53.4585,-2.236244,'ParishChurch'),new Array('St Cuthbert`s RC Primary School (38948-37054)',53.429703,-2.22141,'School'),new Array('Society of African Missions Provincial House and Mission Promotions Centre (71103-75123)',53.45857230000001,-2.219911,'Other'),new Array('SMA Community House (71104-75127)',53.45857230000001,-2.219911,'Other'),new Array('St Bernadette (57289-63321)',53.433083,-2.247587,'ParishChurch'),new Array('St Bede`s College School (38957-37063)',53.451698,-2.253147,'School'),new Array('St Bede`s College Prep (7447-74619)',53.45139169999999,-2.2525718,'School'),new Array('Our Lady (57273-63313)',53.4576579,-2.2476991,'ParishChurch'),new Array('Our Lady (57273-74893)',53.4576579,-2.2476991,'ParishChurch'),new Array('Central Manchester Hospital - Roman Catholic Chaplaincy Team (71210-75224)',53.4624524,-2.2277094,'Other'),new Array('Holy Name School (38120-36224)',53.461116,-2.240657,'School'),new Array('St Joseph (57269-63311)',53.460924,-2.212329,'ParishChurch'),new Array('St Joseph`s RC Primary School (38947-37053)',53.459684,-2.20896,'School'),new Array('St Joseph`s Home (71036-74954)',53.4621576,-2.213331400000016,'Other'),new Array('Holy Name (5933-74535)',53.464434,-2.227258,'ParishChurch'),new Array('St Joseph`s Home (71036-75351)',53.4621576,-2.213331400000016,'Other'),new Array('St Joseph`s Home (71036-75352)',53.4621576,-2.213331400000016,'Other'),new Array('Dom Polski (71107-75281)',53.45452220000001,-2.2602975,'Other'),new Array('St Bernard`s RC Primary School (38944-37050)',53.429027,-2.201939,'School'),new Array('St Bernard (57233-63293)',53.429027,-2.201939,'ParishChurch'),new Array('SChr Community (71108-75282)',53.45452220000001,-2.2602975,'Other'),new Array('Dom Polski (71107-75356)',53.45452220000001,-2.2602975,'Other'),new Array('Our Lady School (38122-36226)',53.452911,-2.265457,'School'),new Array('St Mary (57267-63310)',53.443334,-2.189437,'ParishChurch'),new Array('St Mary`s RC Primary School (38940-37046)',53.439273,-2.191895,'School'),new Array('113 Nell Lane (71130-75355)',53.4338615,-2.2631046,'Other'),new Array('Loreto High School (38951-37057)',53.434013,-2.263442,'School'),new Array('Loreto College School (39097-37203)',53.462673,-2.252926,'School'),new Array('St Peter`s RC High School- Specialist College for Business and Enterprise (39111-37217)',53.459454,-2.196233,'School'),new Array('St Richard`s RC Primary School (38945-37051)',53.45213,-2.189528,'School'),new Array('St Richard (5961-63310)',53.451681,-2.18889,'ParishChurch'),new Array('St Alphonsus (57283-63313)',53.458594,-2.266165,'ParishChurch'),new Array(' (71249-74931)',53.458594,-2.266165,'Other'),new Array('St Catherine of Sienna (57255-63304)',53.416502,-2.222607,'ParishChurch'),new Array('St Ambrose (57239-63296)',53.423331,-2.258131,'ParishChurch'),new Array('St Catherine`s RC Primary School (38932-37038)',53.416502,-2.222607,'School'),new Array('St Ambrose RC Primary School (38928-37034)',53.423331,-2.258131,'School'),new Array('St Wilfrid`s RC Primary School (38942-37048)',53.468838,-2.253309,'School'),new Array('St Alphonsus RC Primary School (39033-37139)',53.463531,-2.263595,'School'),new Array('Barlow RC High School (38955-37061)',53.415432,-2.220072,'School'),new Array('St John Vianney School (39127-37233)',53.451209,-2.278712,'School'),new Array('Francis House Family Trust (71162-75228)',53.4116913,-2.224219,'Other'),new Array('St John`s RC Primary School (38946-37052)',53.446579,-2.282807,'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'; } //