strList="

De La Salle Community (0 miles)
Zoom on map | View full information

Our Lady of Lourdes (2.5 miles)
Zoom on map | View full information

St Francis de Sales (5.6 miles)
Zoom on map | View full information

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

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

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

Our Lady of the Assumption (9.1 miles)
Zoom on map | View full information

"; function showResults() { document.getElementById("mapList").style.display="block"; } var records = new Array(new Array('De La Salle Community (72627-77166)',51.3906503,-1.4695139,'Other'),new Array('Our Lady of Lourdes (928-9831)',51.41009460000001,-1.517974299999992,'ParishChurch'),new Array('St Francis de Sales (948-9831)',51.378128,-1.340506,'ParishChurch'),new Array('St Joseph (951-9832)',51.40635,-1.319412,'ParishChurch'),new Array('St Joseph`s Primary School (1142-10239)',51.406763,-1.313123,'School'),new Array('Sacred Heart Church (925-9863)',51.507944,-1.534306,'ParishChurch'),new Array('Our Lady of the Assumption (1052-9858)',51.404232,-1.260788,'ParishChurch'),new Array('St Finian`s Primary School (1141-10238)',51.422808,-1.256303,'School'),new Array('St Thomas More Church (42502-63703)',51.4190712,-1.725106900000014,'ParishChurch'),new Array('St John Fisher Catholic Church (806-9777)',51.2304847,-1.341288299999974,'ParishChurch'),new Array('St John the Baptist (802-9777)',51.208107,-1.488044700000046,'ParishChurch'),new Array('Douai Abbey (66519-9869)',51.409572,-1.171802,'Church'),new Array('St Mary (66520-9869)',51.409572,-1.171802,'Church'),new Array('Douai Abbey (66519-76381)',51.409572,-1.171802,'Church'),new Array('St John the Baptist Primary School (1117-10214)',51.204808,-1.502226,'School'),new Array('Holy Family Church (42504-63707)',51.337206,-1.773097,'ParishChurch'),new Array('St Michael (1049-9857)',51.355434,-1.155689,'ParishChurch'),new Array('SS Patrick and George Church (65126-70842)',51.232384,-1.66923,'ParishChurch'),new Array('St John Vianney (1069-9863)',51.589022,-1.417887,'ParishChurch'),new Array('Farleigh Independent Preparatory School (1173-10270)',51.174004,-1.515732,'School'),new Array('St Patrick (859-9800)',51.593452,-1.335979,'ParishChurch'),new Array('St Mary (856-9800)',51.593452,-1.335979,'ParishChurch'),new Array('St Amand`s Catholic Primary School (1150-10247)',51.593452,-1.335979,'School'),new Array('St Joseph Church (42520-63719)',51.5242444,-1.78861710000001,'ParishChurch'),new Array('Holy Family Church (42509-63714)',51.5614386,-1.741907200000014,'ParishChurch'),new Array('Holy Family Church (42509-63713)',51.5614386,-1.741907200000014,'ParishChurch'),new Array('Holy Family Primary School (7910-71341)',51.5614386,-1.7419072,'School'),new Array('Our Lady and St John Church (36460-34562)',51.521343,-1.139855,'ParishChurch'),new Array('St Luke (1029-9869)',51.438345,-1.081089,'ParishChurch'),new Array('St Oswald (1031-9857)',51.400596,-1.070777,'ParishChurch'),new Array('Holy Rood Catholic Primary School (KS2) (71098-35451)',51.5560792,-1.7704862,'School'),new Array('Holy Cross Catholic Primary School (7902-35410)',51.5626843,-1.7686217,'School'),new Array('Bishop Challoner Secondary School (1123-10220)',51.25656,-1.122864,'School'),new Array('St Joseph (811-9780)',51.257528,-1.122488,'ParishChurch'),new Array('English Martyrs (851-9798)',51.607229,-1.253916,'ParishChurch'),new Array('Holy Rood Church (42506-63708)',51.55887209999999,-1.776087100000041,'ParishChurch'),new Array('St John the Evangelist (1067-9862)',51.60722879999999,-1.253915600000028,'ParishChurch'),new Array('Holy Rood Catholic School (KS1) (7900-35451)',51.558755,-1.776325,'School'),new Array('Holy Rood Church (42506-63712)',51.55887209999999,-1.776087100000041,'ParishChurch'),new Array('Polish Catholic Centre (42514-63716)',51.5585976,-1.778677300000027,'ParishChurch'),new Array('Our Lady Queen Of Peace Church (42449-63642)',51.194226,-1.734259,'ParishChurch'),new Array('St Bede (782-9779)',51.28371,-1.092623,'Church'),new Array('St Bede`s Primary School (1115-10212)',51.28371,-1.092623,'School'),new Array('Our Lady and St Bernadette (1028-9869)',51.482205,-1.082023,'ParishChurch'),new Array('St Anne`s Primary School (1182-10279)',51.255685,-1.11414,'School'),new Array('Holy Ghost (809-9779)',51.270355,-1.092313,'ParishChurch'),new Array('St Paul`s Primary School (1140-10237)',51.453107,-1.05034,'School'),new Array('St Catherine`s Primary School (66446-35431)',51.590142,-1.76152,'School'),new Array('St Joseph (994-9844)',51.456413,-1.046644,'ParishChurch'),new Array('The Oratory Preparatory School (38806-36912)',51.515403,-1.079843,'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'; } //