strList="

St Gregory the Great Church (0 miles)
Zoom on map | View full information

St Gregory`s School (0.2 miles)
Zoom on map | View full information

Our Lady of Peace and Blessed Robert Dibdale Church (1.3 miles)
Zoom on map | View full information

Our Lady of Peace and Blessed Robert Dibdale Church (1.3 miles)
Zoom on map | View full information

St Peter`s C of E Church (4.8 miles)
Zoom on map | View full information

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

St Joseph the Worker Church (6.9 miles)
Zoom on map | View full information

"; function showResults() { document.getElementById("mapList").style.display="block"; } var records = new Array(new Array('St Gregory the Great Church (35932-34297)',52.197798,-1.701591,'ParishChurch'),new Array('St Gregory`s School (36800-34899)',52.196051,-1.704266,'School'),new Array('Our Lady of Peace and Blessed Robert Dibdale Church (36071-34367)',52.192096,-1.730843,'Church'),new Array('Our Lady of Peace and Blessed Robert Dibdale Church (36071-34297)',52.192096,-1.730843,'Church'),new Array('St Peter`s C of E Church (65111-34433)',52.201813,-1.588014,'Other'),new Array('St Charles Borromeo Church (36404-34534)',52.277499,-1.632184,'ParishChurch'),new Array('St Joseph the Worker Church (35944-34303)',52.166008,-1.8552,'ParishChurch'),new Array('St Benedict`s School (36817-34916)',52.218316,-1.864208,'School'),new Array('St Mary`s School (36802-34901)',52.290829,-1.774068,'School'),new Array('Our Lady`s School (36795-34894)',52.220956,-1.869821,'School'),new Array('St Mary Immaculate Church (36428-34546)',52.278938,-1.591263,'ParishChurch'),new Array('Our Lady and St Joseph Church (36366-34515)',52.215549,-1.874813,'ParishChurch'),new Array('St Mary Immaculate School (36808-34907)',52.287605,-1.586111,'School'),new Array('SS Peter and Paul and St Elizabeth Church (36096-34380)',52.243739,-1.879699,'ParishChurch'),new Array('St Francis of Assisi Church (36201-34433)',52.157456,-1.509933,'ParishChurch'),new Array('St Joseph`s School (36810-34909)',52.264289,-1.527629,'School'),new Array('St Joseph Church (36027-34433)',52.2348,-1.503007,'Church'),new Array('St Joseph Church (36158-34411)',52.266336,-1.526919,'ParishChurch'),new Array('St Joseph Church (36027-34345)',52.2348,-1.503007,'Church'),new Array('St Patrick`s School (36806-34905)',52.277385,-1.5358,'School'),new Array('Trinity School (36818-34917)',52.295761,-1.552134,'School'),new Array('St Mary Church (36136-34400)',52.268565,-1.89241,'ParishChurch'),new Array('St Peter Church (36434-34549)',52.2882,-1.535805,'ParishChurch'),new Array('St Peter`s School (36805-34904)',52.289269,-1.537949,'School'),new Array('Our Lady and St Michael Church (36069-34386)',52.068955,-1.626006,'Church'),new Array('St Mary`s School (36801-34900)',52.270709,-1.89771,'School'),new Array('St Anthony`s School (36807-34906)',52.283699,-1.516443,'School'),new Array('St Francis of Assisi Church (35940-34301)',52.349505,-1.696608,'ParishChurch'),new Array('Our Lady Church (36211-34438)',52.30251,-1.517236,'ParishChurch'),new Array('Our Lady and St Benedict Church (36412-34538)',52.251381,-1.938051,'ParishChurch'),new Array('St Catharine Church (42363-63528)',52.049534,-1.783933,'ParishChurch'),new Array('St Thomas More School (36777-34876)',52.287328,-1.915381,'School'),new Array('St Francis of Assisi Church (36300-34482)',52.339651,-1.57632,'ParishChurch'),new Array('Our Lady and St Teresa`s School (36809-34908)',52.311874,-1.507629,'School'),new Array('St Augustine`s School (36778-34877)',52.271622,-1.946846,'School'),new Array('St Augustine of England Church (36199-34432)',52.355361,-1.585097,'ParishChurch'),new Array('St Augustine of England Church (36199-34482)',52.355361,-1.585097,'ParishChurch'),new Array('St Bede`s Middle School (36779-34878)',52.302521,-1.92792,'School'),new Array('SS Peter and Paul Church (36108-34386)',52.050915,-1.540702,'ParishChurch'),new Array('Crackley Hall School (38817-36923)',52.355053,-1.571812,'School'),new Array('Our Lady of Mount Carmel Church (36310-34487)',52.305454,-1.932271,'ParishChurch'),new Array('St George and St Teresa Church (36350-34507)',52.374903,-1.750843,'ParishChurch'),new Array('St. Mary`s Catholic Primary School (36767-34866)',52.096866,-1.946191,'School'),new Array('St Mary and St Egwin Church (36406-34535)',52.096866,-1.946191,'ParishChurch'),new Array('St Augustine`s School (36804-34903)',52.363787,-1.585649,'School'),new Array('St John Fisher and St Thomas More Church (36053-34487)',52.250911,-1.988354,'Church'),new Array('St George and St Teresa School (36681-34780)',52.379675,-1.74989,'School'),new Array('St John Fisher and St Thomas More Church (36053-34358)',52.250911,-1.988354,'Church'),new Array('St Saviour Church (36304-34484)',52.037966,-1.856575,'ParishChurch'),new Array('St Mary`s School (36764-34863)',52.037966,-1.856575,'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'; } //