strList="

St Charles Borromeo Church (0 miles)
Zoom on map | View full information

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

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

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

Ss Peter and Paul Church (5.7 miles)
Zoom on map | View full information

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

St Wilfrid of York Church (5.8 miles)
Zoom on map | View full information

"; function showResults() { document.getElementById("mapList").style.display="block"; } var records = new Array(new Array('St Charles Borromeo Church (56045-62253)',52.704686,-1.501697,'ParishChurch'),new Array('St Charles`s Catholic Primary School (37843-35947)',52.704686,-1.501697,'School'),new Array('Our Lady of Lourdes Church (55948-62108)',52.744984,-1.473922,'ParishChurch'),new Array('St Edward`s Catholic Primary School (37826-35930)',52.77976,-1.55903,'School'),new Array('Ss Peter and Paul Church (56074-62296)',52.77976,-1.55903,'ParishChurch'),new Array('St Clare`s Catholic Primary School (38913-37019)',52.719661,-1.365781,'School'),new Array('St Wilfrid of York Church (55969-62135)',52.722952,-1.365793,'ParishChurch'),new Array('SS Michael and James Church (36438-34551)',52.694628,-1.650722,'ParishChurch'),new Array('Holy Cross Church (56078-62301)',52.743583,-1.35745,'ParishChurch'),new Array('Holy Cross Catholic Primary School (37847-35951)',52.743583,-1.35745,'School'),new Array('Grace Dieu Manor Preparatory School (37895-35999)',52.759568,-1.349479,'School'),new Array('Blessed Robert Sutton Catholic Secondary School (37892-35996)',52.787015,-1.616132,'School'),new Array('Blessed Robert Sutton School (36744-34843)',52.787015,-1.616132,'School'),new Array('Our Lady and St Bernard Abbey (56050-62260)',52.741276,-1.324008,'ParishChurch'),new Array('St Joseph the Worker (65850-62126)',52.806053,-1.609882,'Other'),new Array('Holy Rosary Catholic Primary School (37891-35995)',52.805309,-1.613315,'School'),new Array('Sacred Heart Church (36102-34383)',52.624414,-1.661725,'Church'),new Array('Sacred Heart Church (36102-34505)',52.624414,-1.661725,'Church'),new Array('Our Lady of Mercy and St Philip Neri Church (56046-62254)',52.822063,-1.42598,'ParishChurch'),new Array('SS Mary and Modwen Church (35948-34305)',52.805506,-1.632805,'ParishChurch'),new Array('St Benedict Church (36025-34344)',52.575108,-1.546697,'ParishChurch'),new Array('Holy Rosary Church (55961-62126)',52.827496,-1.584297,'ParishChurch'),new Array('St Benedict`s School (36796-34895)',52.572059,-1.53488,'School'),new Array('St Elizabeth`s School (36734-34833)',52.647903,-1.705013,'School'),new Array('St John the Baptist Church (36346-34505)',52.635174,-1.697799,'ParishChurch'),new Array('St Gabriel`s School (36738-34837)',52.615637,-1.673416,'School'),new Array('St Winefride Church (56064-62281)',52.770536,-1.291509,'ParishChurch'),new Array('St Modwen`s School (36713-34812)',52.816093,-1.652806,'School'),new Array('St Winefride`s Catholic Primary School (37845-35949)',52.772633,-1.291831,'School'),new Array('St Martin`s Catholic Secondary School (37850-35954)',52.572301,-1.400621,'School'),new Array('Our Lady of Perpetual Succour Church (35942-34302)',52.764477,-1.725997,'ParishChurch'),new Array('Our Lady and St Gregory Church (56040-62243)',52.556864,-1.44458,'Other'),new Array('St Ralph Sherwin Church (55985-62158)',52.864491,-1.438656,'ParishChurch'),new Array('St Anne Church (36217-34441)',52.536851,-1.516101,'ParishChurch'),new Array('St Anne`s School (36815-34914)',52.534773,-1.502737,'School'),new Array('Ss Peter and Paul Church (55988-62163)',52.573786,-1.321008,'ParishChurch'),new Array('De Lisle Catholic Science College School (37849-35953)',52.769999,-1.239567,'School'),new Array('Church of the Risen Lord (55965-62131)',52.843949,-1.335644,'ParishChurch'),new Array('St Peter`s Catholic Primary School (37838-35942)',52.578817,-1.303295,'School'),new Array('Holy Spirit Church (55979-62147)',52.879432,-1.490723,'ParishChurch'),new Array('Loughborough University Chaplaincy (56031-62228)',52.764873,-1.229474,'ParishChurch'),new Array('Chapel (Edward Herbert Building) (65857-62228)',52.764873,-1.229474,'Other'),new Array('St Mary in the Elms C of E Church (56081-62305)',52.732459,-1.208202,'ParishChurch'),new Array('St Peter Church (56004-62184)',52.54411,-1.364715,'ParishChurch'),new Array('St Peter`s Catholic Primary School (37839-35943)',52.542266,-1.362751,'School'),new Array('Sacred Heart Catholic Primary School (37840-35944)',52.762609,-1.211923,'School'),new Array('St Mary Church (56033-62231)',52.772417,-1.217394,'ParishChurch'),new Array('St Mary`s Catholic Primary School (37841-35945)',52.773067,-1.21507,'School'),new Array('Sacred Heart of Jesus Church (56032-62229)',52.759492,-1.206852,'ParishChurch'),new Array('St Joseph`s School (36816-34915)',52.518443,-1.466506,'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'; } //