strList="

Holy Family (0 miles)
Zoom on map | View full information

Holy Family Church (0.5 miles)
Zoom on map | View full information

St Thomas More Church (2.2 miles)
Zoom on map | View full information

Our Lady of Ransom (2.4 miles)
Zoom on map | View full information

Our Lady Of Ransom Church (2.7 miles)
Zoom on map | View full information

St Basil The Great Church (2.9 miles)
Zoom on map | View full information

St Basil The Great Presbytery (2.9 miles)
Zoom on map | View full information

"; function showResults() { document.getElementById("mapList").style.display="block"; } var records = new Array(new Array('Holy Family (36522-34621)',51.562822,0.561216,'School'),new Array('Holy Family Church (39228-37332)',51.566354,0.550188,'ParishChurch'),new Array('St Thomas More Church (39314-37402)',51.553073,0.611016,'ParishChurch'),new Array('Our Lady of Ransom (36524-34623)',51.594736,0.584772,'School'),new Array('Our Lady Of Ransom Church (39386-37444)',51.589496,0.606579,'ParishChurch'),new Array('St Basil The Great Church (39220-37326)',51.568416,0.493633,'ParishChurch'),new Array('St Basil The Great Presbytery (39149-71431)',51.568416,0.493633,'Other'),new Array('St Joseph`s (36523-34622)',51.522982,0.589053,'School'),new Array('St Teresa`s (36519-34618)',51.569834,0.493307,'School'),new Array('Our Lady Of Canvey And The English Martyrs Church (39242-37343)',51.520209,0.572418,'ParishChurch'),new Array('Our Lady Of Good Counsel Church (39444-37486)',51.611339,0.518114,'ParishChurch'),new Array('HMP and YOI Bullwood Hall Chapel (39468-37500)',51.59903,0.631934,'Other'),new Array('St Peter Church (39294-37385)',51.561737,0.661264,'ParishChurch'),new Array('De La Salle School (36521-34620)',51.580264,0.464908,'School'),new Array('Our Lady Of Lourdes And St Joseph Church (39362-37429)',51.545163,0.663989,'ParishChurch'),new Array('Our Lady of Lourdes (36526-34625)',51.550116,0.669241,'School'),new Array('St Thomas More High School for Boys (36531-34630)',51.554521,0.670523,'School'),new Array('St Pius X Church (39338-37415)',51.600275,0.656484,'ParishChurch'),new Array('The Most Holy Trinity Church (39222-37327)',51.568822,0.447419,'ParishChurch'),new Array('St Anne Line Infant School (36518-34617)',51.569992,0.446962,'School'),new Array('St Anne Line Junior School (36517-34616)',51.569992,0.446962,'School'),new Array('St John Fisher Church (39382-37442)',51.564172,0.701897,'ParishChurch'),new Array('St Therese Of Lisieux Church (39360-37428)',51.566723,0.422904,'ParishChurch'),new Array('St Peter`s Catholic Primary School (36520-34619)',51.61285,0.443243,'School'),new Array('English Martyrs Church (39284-37378)',51.645162,0.616031,'ParishChurch'),new Array('St Teresa`s (36525-34624)',51.588515,0.699284,'School'),new Array('St Joseph`s (36511-34610)',51.645028,0.619189,'School'),new Array('St Helen`s (36529-34628)',51.543294,0.702058,'School'),new Array('St Teresa Of The Child Jesus Church (39388-37445)',51.588515,0.699284,'ParishChurch'),new Array('St Bernard`s High School (36530-34629)',51.537412,0.698537,'School'),new Array('Our Lady Help Of Christians And St Helen Church (39442-37482)',51.539166,0.700502,'ParishChurch'),new Array('Holy Trinity Church (39404-37454)',51.645162,0.616031,'ParishChurch'),new Array('St Helen`s RC Primary School (38823-36929)',51.541958,0.703061,'School'),new Array('St Joseph`s (36534-34633)',51.516455,0.428812,'School'),new Array('Our Lady And St Joseph Church (39410-37457)',51.517332,0.427734,'ParishChurch'),new Array('The Sacred Heart Church (39400-37452)',51.53993,0.725007,'ParishChurch'),new Array('Sacred Heart (36528-34627)',51.539639,0.725509,'School'),new Array('The Most Holy Redeemer Church (39230-37333)',51.620919,0.416646,'ParishChurch'),new Array('Our Lady And St Joseph Church (39416-37460)',51.660894,0.437513,'ParishChurch'),new Array('St Gregory Church (39422-37464)',51.536082,0.760701,'ParishChurch'),new Array('St Mary`s (36535-34634)',51.467057,0.393889,'School'),new Array('St George And The English Martyrs Church (39394-37449)',51.530727,0.78254,'ParishChurch'),new Array('St George`s Catholic Primary School (38824-36930)',51.53729,0.78568,'School'),new Array('St Joseph the Worker (36507-34606)',51.632329,0.344911,'School'),new Array('St Joseph The Worker Church (39346-37419)',51.632329,0.344911,'ParishChurch'),new Array('St John The Evangelist And St Erconwald Church (39354-37425)',51.663098,0.371589,'ParishChurch'),new Array('St Peter Church (39414-37398)',51.499505,0.326688,'ParishChurch'),new Array('St Peter Church (39414-37459)',51.499505,0.326688,'ParishChurch'),new Array('St Mary`s RC Primary School (38825-36931)',51.461504,0.358458,'School'),new Array('The Holy Name Church (39254-37353)',51.716185,0.476507,'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'; } //