strList="

The Bishops` (0 miles)
Zoom on map | View full information

St Augustine Of Canterbury Church (0.1 miles)
Zoom on map | View full information

New Hall School (1 miles)
Zoom on map | View full information

New Hall Preparatory School (1 miles)
Zoom on map | View full information

New Hall School (1 miles)
Zoom on map | View full information

The Church Of Our Saviour Church (1.2 miles)
Zoom on map | View full information

Saint John Payne Rc School (1.6 miles)
Zoom on map | View full information

"; function showResults() { document.getElementById("mapList").style.display="block"; } var records = new Array(new Array('The Bishops` (36513-34612)',51.751605,0.499628,'School'),new Array('St Augustine Of Canterbury Church (39406-37455)',51.751146,0.497545,'ParishChurch'),new Array('New Hall School (36515-34614)',51.76421,0.51073,'School'),new Array('New Hall Preparatory School (36508-34607)',51.76421,0.51073,'School'),new Array('New Hall School (36515-78138)',51.76421,0.51073,'School'),new Array('The Church Of Our Saviour Church (39408-37456)',51.735069,0.505421,'ParishChurch'),new Array('Saint John Payne Rc School (38827-36933)',51.751847,0.463041,'School'),new Array('St Pius X (36510-34609)',51.74972,0.460708,'School'),new Array('St John Payne Comprehensive School (36516-34615)',51.75248,0.460757,'School'),new Array('Our Lady Immaculate (36509-34608)',51.729465,0.468109,'School'),new Array('St Philip`s Priory (38830-36936)',51.726565,0.462752,'School'),new Array('Our Lady Immaculate Linked With The Holy Name Church (39248-37347)',51.726565,0.462752,'ParishChurch'),new Array('The Blessed Sacrament Church (39250-37349)',51.748332,0.444493,'ParishChurch'),new Array('The Holy Name Church (39254-37353)',51.716185,0.476507,'ParishChurch'),new Array('Holy Family (36489-34588)',51.79128,0.629948,'School'),new Array('The Holy Family And All Saints Church (39446-37487)',51.799533,0.638899,'ParishChurch'),new Array('Our Lady And St Joseph Church (39416-37460)',51.660894,0.437513,'ParishChurch'),new Array('St Francis (36512-34611)',51.732865,0.672337,'School'),new Array('Assumption Of Our Lady Church (39372-37435)',51.730671,0.684967,'ParishChurch'),new Array('St John The Evangelist And St Erconwald Church (39354-37425)',51.663098,0.371589,'ParishChurch'),new Array('St Mary Church (39398-37451)',51.849575,0.629077,'ParishChurch'),new Array('English Martyrs Church (39284-37378)',51.645162,0.616031,'ParishChurch'),new Array('Holy Trinity Church (39404-37454)',51.645162,0.616031,'ParishChurch'),new Array('St Joseph`s (36511-34610)',51.645028,0.619189,'School'),new Array('Our Lady Queen Of Peace Church (39232-37334)',51.879219,0.555524,'ParishChurch'),new Array('St Francis Catholic Primary School (38826-36932)',51.883154,0.546592,'School'),new Array('Our Lady Of Good Counsel Church (39444-37486)',51.611339,0.518114,'ParishChurch'),new Array('The Most Holy Redeemer Church (39230-37333)',51.620919,0.416646,'ParishChurch'),new Array('St Peter`s Catholic Primary School (36520-34619)',51.61285,0.443243,'School'),new Array('St Mary Immaculate And The Holy Archangels Church (39358-37427)',51.833759,0.69567,'ParishChurch'),new Array('Our Lady And St Anne Line Church (39290-37381)',51.872761,0.365144,'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('St Helen Church (39380-37441)',51.703137,0.244711,'ParishChurch'),new Array('Our Lady of Ransom (36524-34623)',51.594736,0.584772,'School'),new Array('St Bernard Church (39264-37363)',51.871914,0.685617,'ParishChurch'),new Array('St John Houghton Catholic Church Church (39426-37467)',51.81024,0.751241,'ParishChurch'),new Array('St Margaret Of Scotland Church (39288-37380)',51.634936,0.299538,'ParishChurch'),new Array('St Margaret Of Scotland Church (39288-37441)',51.634936,0.299538,'ParishChurch'),new Array('De La Salle School (36521-34620)',51.580264,0.464908,'School'),new Array('HMP and YOI Bullwood Hall Chapel (39468-37500)',51.59903,0.631934,'Other'),new Array('St Helen`s Junior School (36504-34603)',51.627072,0.303402,'School'),new Array('Brentwood Diocese (71011-867)',51.6286785,0.303570499999978,'Other'),new Array('St Helen`s Catholic Junior School (38828-36934)',51.628678,0.30357,'School'),new Array('Our Lady Of Ransom Church (39386-37444)',51.589496,0.606579,'ParishChurch'),new Array('Cathedral Church Of St Mary and St Helen Church (39210-37315)',51.620641,0.305749,'Cathedral'),new Array('St Helen`s Infant School (36505-34604)',51.61911,0.305874,'School'),new Array('St Pius X Church (39338-37415)',51.600275,0.656484,'ParishChurch'),new Array('Ursuline Convent High School (36514-34613)',51.61766,0.304573,'School'),new Array('St Teresa`s (36519-34618)',51.569834,0.493307,'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'; } //