strList="

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

Bishop Challoner Secondary School (0.4 miles)
Zoom on map | View full information

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

Holy Ghost (1.4 miles)
Zoom on map | View full information

St Bede`s Primary School (2.2 miles)
Zoom on map | View full information

St Bede (2.2 miles)
Zoom on map | View full information

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

"; function showResults() { document.getElementById("mapList").style.display="block"; } var records = new Array(new Array('St Anne`s Primary School (1182-10279)',51.255685,-1.11414,'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('Holy Ghost (809-9779)',51.270355,-1.092313,'ParishChurch'),new Array('St Bede`s Primary School (1115-10212)',51.28371,-1.092623,'School'),new Array('St Bede (782-9779)',51.28371,-1.092623,'Church'),new Array('Sacred Heart (904-9814)',51.281441,-0.96632,'ParishChurch'),new Array('St Michael (1049-9857)',51.355434,-1.155689,'ParishChurch'),new Array('Alton School (1160-10257)',51.16023,-0.966743,'School'),new Array('St Thomas More (906-9871)',51.304416,-0.898324,'ParishChurch'),new Array('St John Fisher Catholic Church (806-9777)',51.2304847,-1.341288299999974,'ParishChurch'),new Array('St Oswald (1031-9857)',51.400596,-1.070777,'ParishChurch'),new Array('St Mary (66520-9869)',51.409572,-1.171802,'Church'),new Array('Douai Abbey (66519-76381)',51.409572,-1.171802,'Church'),new Array('Douai Abbey (66519-9869)',51.409572,-1.171802,'Church'),new Array('St Mary`s (799-9776)',51.087376,-1.163947,'ParishChurch'),new Array('St Gregory the Great (797-9865)',51.087376,-1.163946799999962,'Church'),new Array('Our Lady of the Assumption (1052-9858)',51.404232,-1.260788,'ParishChurch'),new Array('Our Lady (874-9805)',51.282459,-0.8353,'ParishChurch'),new Array('St Luke (1029-9869)',51.438345,-1.081089,'ParishChurch'),new Array('St Francis de Sales (948-9831)',51.378128,-1.340506,'ParishChurch'),new Array('St Finian`s Primary School (1141-10238)',51.422808,-1.256303,'School'),new Array('St Joseph (831-9789)',51.411466,-0.938145,'ParishChurch'),new Array('Christ the King (990-9842)',51.422891,-0.959825,'ParishChurch'),new Array('Christ the King Primary School (1144-10241)',51.42318,-0.962091,'School'),new Array('St Swithun (1089-9871)',51.339629,-0.834154,'ParishChurch'),new Array('St Joseph`s Primary School (1142-10239)',51.406763,-1.313123,'School'),new Array('St Joseph (951-9832)',51.40635,-1.319412,'ParishChurch'),new Array('Blessed Hugh Faringdon School (36763-34862)',51.44489,-1.003961,'School'),new Array('St Paul`s Primary School (1140-10237)',51.453107,-1.05034,'School'),new Array('The Holy Family (34837-33720)',51.237945,-0.792447,'ParishChurch'),new Array('The Holy Family (34837-33677)',51.237945,-0.792447,'ParishChurch'),new Array('St Joseph (994-9844)',51.456413,-1.046644,'ParishChurch'),new Array('English Martyrs Primary School (1143-10240)',51.453675,-1.019889,'School'),new Array('The English Martyrs (992-9843)',51.451111,-1.003725,'ParishChurch'),new Array('St Joan of Arc (34811-33707)',51.210991,-0.790318,'ParishChurch'),new Array('St Polycarp`s Catholic Primary School (38766-36872)',51.211617,-0.789142,'School'),new Array('More House School (38748-36854)',51.178821,-0.798599,'Other'),new Array('The Sacred Heart (814-9782)',51.112658,-0.863774,'ParishChurch'),new Array('All Hallows Catholic School (1152-10249)',51.234716,-0.775057,'School'),new Array('St Joseph (793-9774)',51.2483356,-0.769565599999964,'ParishChurch'),new Array('St William of York (1002-9846)',51.445874,-0.945791,'ParishChurch'),new Array('St William of York (1002-75877)',51.445874,-0.945791,'ParishChurch'),new Array('Catholic Chaplaincy to Reading University (4766-744)',51.4458754,-0.9457716,'Other'),new Array('The Immaculate Conception (1016-9797)',51.345889,-0.798702,'ParishChurch'),new Array('St Joseph`s College (1170-10267)',51.446446,-0.948325,'School'),new Array('Our Lady of Peace and Blessed Dominic Barberi (997-9845)',51.441594,-0.929861,'ParishChurch'),new Array('St James (1000-9846)',51.45326439999999,-0.963422199999968,'ParishChurch'),new Array('Sacred Heart Church (66505-76440)',51.453209,-0.960604,'ParishChurch'),new Array('St Bernadette`s Primary School (1120-10217)',51.300481,-0.762707,'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'; } //