strList="

Our Lady And St Joseph Church (0 miles)
Zoom on map | View full information

St Joseph`s (0.1 miles)
Zoom on map | View full information

St Therese Of Lisieux Church (3.4 miles)
Zoom on map | View full information

St Anne Line Junior School (3.7 miles)
Zoom on map | View full information

St Anne Line Infant School (3.7 miles)
Zoom on map | View full information

The Most Holy Trinity Church (3.7 miles)
Zoom on map | View full information

St Mary`s (3.8 miles)
Zoom on map | View full information

"; function showResults() { document.getElementById("mapList").style.display="block"; } var records = new Array(new Array('Our Lady And St Joseph Church (39410-37457)',51.517332,0.427734,'ParishChurch'),new Array('St Joseph`s (36534-34633)',51.516455,0.428812,'School'),new Array('St Therese Of Lisieux Church (39360-37428)',51.566723,0.422904,'ParishChurch'),new Array('St Anne Line Junior School (36517-34616)',51.569992,0.446962,'School'),new Array('St Anne Line Infant School (36518-34617)',51.569992,0.446962,'School'),new Array('The Most Holy Trinity Church (39222-37327)',51.568822,0.447419,'ParishChurch'),new Array('St Mary`s (36535-34634)',51.467057,0.393889,'School'),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 Peter Church (39414-37398)',51.499505,0.326688,'ParishChurch'),new Array('St Peter Church (39414-37459)',51.499505,0.326688,'ParishChurch'),new Array('De La Salle School (36521-34620)',51.580264,0.464908,'School'),new Array('St Teresa`s (36519-34618)',51.569834,0.493307,'School'),new Array('St Thomas of Canterbury (36533-34632)',51.486474,0.328949,'School'),new Array('Convent High School for Girls (36536-34635)',51.482929,0.329964,'School'),new Array('St Mary`s RC Primary School (38825-36931)',51.461504,0.358458,'School'),new Array('Our Lady Star Of The Sea Church (39424-37465)',51.461039,0.357397,'ParishChurch'),new Array('St Thomas Of Canterbury Church (39308-37398)',51.476506,0.332315,'ParishChurch'),new Array('St John the Evangelist Church (61218-65688)',51.441292,0.371144,'ParishChurch'),new Array('St John`s Catholic Primary School (38605-36709)',51.436547,0.386913,'School'),new Array('St John`s Catholic Comprehensive School (38626-36730)',51.434221,0.384965,'School'),new Array('The Holy Cross Church (39212-37321)',51.511076,0.282932,'ParishChurch'),new Array('Our Lady Of Canvey And The English Martyrs Church (39242-37343)',51.520209,0.572418,'ParishChurch'),new Array('Holy Family Church (39228-37332)',51.566354,0.550188,'ParishChurch'),new Array('Holy Cross (36532-34631)',51.505948,0.282574,'School'),new Array('St Joseph`s Convent Preparatory School (38635-36739)',51.431531,0.377487,'School'),new Array('Holy Family (36522-34621)',51.562822,0.561216,'School'),new Array('Our Lady of the Assumption Church (61216-65687)',51.4421116,0.336591799999951,'ParishChurch'),new Array('St Peter`s Catholic Primary School (36520-34619)',51.61285,0.443243,'School'),new Array('St Joseph`s Catholic Primary School (38610-36714)',51.439786,0.336876,'School'),new Array('St Joseph`s Catholic Primary School (38819-36925)',51.546242,0.270852,'School'),new Array('St Joseph`s (36523-34622)',51.522982,0.589053,'School'),new Array('The Most Holy Redeemer Church (39230-37333)',51.620919,0.416646,'ParishChurch'),new Array('Our Lady Of Good Counsel Church (39444-37486)',51.611339,0.518114,'ParishChurch'),new Array('St Peter`s Catholic Centre (39452-37468)',51.573221,0.269289,'Church'),new Array('Marillac Hospital Chapel (39472-37502)',51.600301,0.302885,'Other'),new Array('St Joseph Church (39428-37468)',51.557387,0.24676,'ParishChurch'),new Array('Ursuline Preparatory School (36506-34605)',51.600231,0.288527,'School'),new Array('St Thomas More Church (39314-37402)',51.553073,0.611016,'ParishChurch'),new Array('Sacred Heart of Mary Girls` School (36553-34652)',51.556856,0.243516,'School'),new Array('English Martyrs Catholic Primary School (38618-36722)',51.400789,0.499484,'School'),new Array('Our Lady of Ransom (36524-34623)',51.594736,0.584772,'School'),new Array('Holy Cross And All Saints Church (39440-37480)',51.611762,0.299045,'ParishChurch'),new Array('English Martyrs Church (61058-65606)',51.400789,0.499484,'ParishChurch'),new Array('St Joseph The Worker Church (39346-37419)',51.632329,0.344911,'ParishChurch'),new Array('St Joseph the Worker (36507-34606)',51.632329,0.344911,'School'),new Array('Ursuline Convent High School (36514-34613)',51.61766,0.304573,'School'),new Array('St Helen`s Infant School (36505-34604)',51.61911,0.305874,'School'),new Array('Cathedral Church Of St Mary and St Helen Church (39210-37315)',51.620641,0.305749,'Cathedral'),new Array('English Martyrs Church (39344-37418)',51.555497,0.228893,'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'; } //