strList="

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

Our Lady and St John (0.4 miles)
Zoom on map | View full information

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

St John Vianney School (0.4 miles)
Zoom on map | View full information

Our Lady School (0.8 miles)
Zoom on map | View full information

St Ann (0.9 miles)
Zoom on map | View full information

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

"; function showResults() { document.getElementById("mapList").style.display="block"; } var records = new Array(new Array('St John`s RC Primary School (38946-37052)',53.446579,-2.282807,'School'),new Array('Our Lady and St John (57241-63297)',53.440659,-2.282306,'ParishChurch'),new Array('St Teresa`s RC Primary School (39030-37136)',53.452259,-2.283372,'School'),new Array('St John Vianney School (39127-37233)',53.451209,-2.278712,'School'),new Array('Our Lady School (38122-36226)',53.452911,-2.265457,'School'),new Array('St Ann (57409-63381)',53.44832,-2.303915,'ParishChurch'),new Array('St Ann`s RC Primary School (39029-37135)',53.450252,-2.306231,'School'),new Array('Dom Polski (71107-75356)',53.45452220000001,-2.2602975,'Other'),new Array(' (71249-74931)',53.458594,-2.266165,'Other'),new Array('Dom Polski (71107-75281)',53.45452220000001,-2.2602975,'Other'),new Array('SChr Community (71108-75282)',53.45452220000001,-2.2602975,'Other'),new Array('St Alphonsus (57283-63313)',53.458594,-2.266165,'ParishChurch'),new Array('Loreto High School (38951-37057)',53.434013,-2.263442,'School'),new Array('113 Nell Lane (71130-75355)',53.4338615,-2.2631046,'Other'),new Array('St Bede`s College School (38957-37063)',53.451698,-2.253147,'School'),new Array('The English Martyrs (57287-63320)',53.446917,-2.251293,'ParishChurch'),new Array('FCJ House (71121-75730)',53.4470793,-2.3138658,'Other'),new Array('St Bede`s College Prep (7447-74619)',53.45139169999999,-2.2525718,'School'),new Array('St Alphonsus RC Primary School (39033-37139)',53.463531,-2.263595,'School'),new Array('Our Lady (57273-74893)',53.4576579,-2.2476991,'ParishChurch'),new Array('Our Lady (57273-63313)',53.4576579,-2.2476991,'ParishChurch'),new Array('Loreto College School (39097-37203)',53.462673,-2.252926,'School'),new Array('St Bernadette (57289-63321)',53.433083,-2.247587,'ParishChurch'),new Array(' (71529-74874)',53.4668821,-2.3086853,'Other'),new Array('St Ambrose (57239-63296)',53.423331,-2.258131,'ParishChurch'),new Array('Holy Family Church (59592-32768)',53.420954,-2.300679,'ParishChurch'),new Array('St Ambrose RC Primary School (38928-37034)',53.423331,-2.258131,'School'),new Array('St Kentigern`s RC Primary School (38956-37062)',53.442474,-2.236035,'School'),new Array('Holy Family Catholic Primary School (39052-37158)',53.420423,-2.301126,'School'),new Array('St Wilfrid`s RC Primary School (38942-37048)',53.468838,-2.253309,'School'),new Array('Holy Name School (38120-36224)',53.461116,-2.240657,'School'),new Array('The Divine Mercy RC Primary School (71030-74612)',53.4505906,-2.235769699999992,'School'),new Array('St Antony`s Catholic College School (39034-37140)',53.449115,-2.334575,'School'),new Array('St Joseph`s RC Primary School (39003-37109)',53.476493,-2.279029,'School'),new Array('Polish Church of Divine Mercy, Moss Side Parish Church (5969-75381)',53.4585,-2.236244,'ParishChurch'),new Array('St Joseph`s School (38173-36277)',53.422177,-2.317842,'School'),new Array('St Kentigern (57257-63305)',53.444038,-2.228867,'ParishChurch'),new Array('St Hugh of Lincoln (57411-63381)',53.453121,-2.337322,'ParishChurch'),new Array('St Hugh Of Lincoln RC Primary School (39028-37134)',53.453121,-2.337322,'School'),new Array('St Joseph Church (59714-32769)',53.422594,-2.319936,'ParishChurch'),new Array('St Cuthbert (57291-63322)',53.432222,-2.229401,'ParishChurch'),new Array('Holy Family School (38128-36232)',53.427293,-2.332513,'School'),new Array('St Edward (57285-63311)',53.455162,-2.223409,'ParishChurch'),new Array('Central Manchester Hospital - Roman Catholic Chaplaincy Team (71210-75224)',53.4624524,-2.2277094,'Other'),new Array('St Aidan`s Primary School (38147-36251)',53.409113,-2.275894,'School'),new Array('Xaverian College School (39094-37200)',53.45548,-2.222328,'School'),new Array('Holy Name (5933-74535)',53.464434,-2.227258,'ParishChurch'),new Array('Diocesan Offices (341-883)',53.48374330000001,-2.2598303,'Other'),new Array('Cathedral Church of St John the Evangelist (6071-5180)',53.4839085,-2.261098,'Cathedral'),new Array('Cathedral Centre Books (71237-74899)',53.483693,-2.261089,'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'; } //