strList="

St Gabriel`s School (0 miles)
Zoom on map | View full information

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

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

St John the Baptist Church (1.7 miles)
Zoom on map | View full information

St Elizabeth`s School (2.6 miles)
Zoom on map | View full information

SS Michael and James Church (5.5 miles)
Zoom on map | View full information

St Benedict Church (6 miles)
Zoom on map | View full information

"; function showResults() { document.getElementById("mapList").style.display="block"; } var records = new Array(new Array('St Gabriel`s School (36738-34837)',52.615637,-1.673416,'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('St John the Baptist Church (36346-34505)',52.635174,-1.697799,'ParishChurch'),new Array('St Elizabeth`s School (36734-34833)',52.647903,-1.705013,'School'),new Array('SS Michael and James Church (36438-34551)',52.694628,-1.650722,'ParishChurch'),new Array('St Benedict Church (36025-34344)',52.575108,-1.546697,'ParishChurch'),new Array('Holy Cross School (36631-34730)',52.556509,-1.792192,'School'),new Array('St Benedict`s School (36796-34895)',52.572059,-1.53488,'School'),new Array('Holy Cross and St Francis Church (36150-34407)',52.549746,-1.795867,'ParishChurch'),new Array('St Joseph`s School (36630-34729)',52.574115,-1.821856,'School'),new Array('Holy Trinity Church (36008-34335)',52.570359,-1.823199,'ParishChurch'),new Array('Sacred Heart Church (36012-34337)',52.597584,-1.838784,'ParishChurch'),new Array('Bishop Walsh School (36582-34681)',52.547291,-1.811333,'School'),new Array('St Joseph`s School (36723-34822)',52.681015,-1.818272,'School'),new Array('St Gabriel`s RC Primary School (38812-36918)',52.557383,-1.82716,'School'),new Array('Convent (65107-70837)',52.63101,-1.85379,'Other'),new Array('Holy Cross Church (36414-34539)',52.678078,-1.825753,'ParishChurch'),new Array('St Gerard`s School (36618-34717)',52.522473,-1.787017,'School'),new Array('St Gerard Church (35964-34313)',52.523363,-1.786689,'ParishChurch'),new Array('SS Peter and Paul School (36740-34839)',52.69161,-1.827756,'School'),new Array('SS Peter and Paul Church (36043-34353)',52.69161,-1.827756,'Church'),new Array('St Nicholas Church (36010-34336)',52.55055,-1.839383,'ParishChurch'),new Array('St Nicholas School (36632-34731)',52.55055,-1.839383,'School'),new Array('SS Peter and Paul Church (36043-34539)',52.69161,-1.827756,'Church'),new Array('St Peter and St Paul School (36824-34923)',52.69161,-1.827756,'School'),new Array('St John the Baptist Church (65112-34319)',52.500252,-1.742711,'Church'),new Array('St John the Baptist School (36686-34785)',52.500252,-1.742711,'School'),new Array('St Anne Church (36217-34441)',52.536851,-1.516101,'ParishChurch'),new Array('Sacred Heart and St Teresa Church (35930-34296)',52.490912,-1.704311,'ParishChurch'),new Array('St Edmund Campion School (36638-34737)',52.531192,-1.830934,'School'),new Array('St Joseph Church (36021-34342)',52.501864,-1.575043,'ParishChurch'),new Array('St Edward`s Catholic Primary School (38815-36921)',52.488151,-1.704094,'School'),new Array('St Joseph Church (36021-34441)',52.501864,-1.575043,'ParishChurch'),new Array('Guardian Angels School (36584-34683)',52.497636,-1.764365,'School'),new Array('St Edward`s School (36798-34897)',52.486881,-1.703086,'School'),new Array('Mother of God and Guardian Angels Church (36203-34434)',52.496447,-1.763266,'ParishChurch'),new Array('SS Thomas and Edmund of Canterbury Church (36342-34503)',52.529501,-1.836763,'ParishChurch'),new Array('St Anne`s School (36815-34914)',52.534773,-1.502737,'School'),new Array('Abbey School (36586-34685)',52.529501,-1.836763,'School'),new Array('St Anthony Church (35976-34319)',52.490786,-1.751338,'ParishChurch'),new Array('SS Peter and Paul Church (36277-34471)',52.517643,-1.823588,'ParishChurch'),new Array('St Anne Church (36340-34502)',52.576693,-1.886347,'ParishChurch'),new Array('St Peter and St Paul School (36614-34713)',52.517643,-1.823588,'School'),new Array('St Anthony`s School (36683-34782)',52.490164,-1.750296,'School'),new Array('St Wilfrid Church (35962-34312)',52.50478,-1.802159,'ParishChurch'),new Array('St Wilfrid`s School (36822-34921)',52.504112,-1.800542,'School'),new Array('St Charles`s Catholic Primary School (37843-35947)',52.704686,-1.501697,'School'),new Array('St Anne`s School (36696-34795)',52.580096,-1.891695,'School'),new Array('St Charles Borromeo Church (56045-62253)',52.704686,-1.501697,'ParishChurch')); // 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'; } //