strList="

St Thomas of Canterbury Church (0 miles)
Zoom on map | View full information

St Thomas Catholic Primary School (0.1 miles)
Zoom on map | View full information

Combe Bank School (2.9 miles)
Zoom on map | View full information

St John the Baptist Church (4.7 miles)
Zoom on map | View full information

St Margaret Clitherow Catholic Primary School (5.3 miles)
Zoom on map | View full information

Corpus Christi Church (6.6 miles)
Zoom on map | View full information

St Mary`s (C of E) (6.8 miles)
Zoom on map | View full information

"; function showResults() { document.getElementById("mapList").style.display="block"; } var records = new Array(new Array('St Thomas of Canterbury Church (61088-65621)',51.272507,0.186681,'ParishChurch'),new Array('St Thomas Catholic Primary School (38615-36719)',51.270724,0.188245,'School'),new Array('Combe Bank School (39071-37177)',51.282306,0.122387,'School'),new Array('St John the Baptist Church (61090-65622)',51.265093,0.077787,'ParishChurch'),new Array('St Margaret Clitherow Catholic Primary School (38620-36724)',51.215973,0.269948,'School'),new Array('Corpus Christi Church (61084-65619)',51.19609,0.278646,'ParishChurch'),new Array('St Mary`s (C of E) (34939-33771)',51.290521,0.032493,'ParishChurch'),new Array('St Theresa of the Infant Jesus Church (61260-65709)',51.310052,0.037776,'ParishChurch'),new Array('St Lawrence Church (61082-65618)',51.198255,0.064128,'ParishChurch'),new Array('Holy Innocents Church (61176-65666)',51.364239,0.091077,'ParishChurch'),new Array('Holy Innocents Catholic Primary School (38485-36589)',51.366114,0.08125,'School'),new Array('St Philomena`s Catholic Primary School (38483-36587)',51.382283,0.115368,'School'),new Array('St Dunstan Church (61080-65617)',51.160904,0.256559,'ParishChurch'),new Array('All Saints (36476-34575)',51.261882,-0.005951,'ParishChurch'),new Array('All Saints (36476-33745)',51.261882,-0.005951,'ParishChurch'),new Array('St Joseph`s Parish Office (65146-65664)',51.387048,0.113461,'Other'),new Array('Our Lady of the Crays Church (61172-65664)',51.387048,0.113461,'ParishChurch'),new Array('St Michael and All Angels Church (61174-65665)',51.367424,0.054904,'ParishChurch'),new Array('Church of the Apostles Church (61182-65669)',51.398976,0.174723,'ParishChurch'),new Array('St Bartholomew`s Catholic Primary School (38619-36723)',51.398976,0.174723,'School'),new Array('St Gregory`s Catholic Comprehensive School (38633-36737)',51.148684,0.255534,'School'),new Array('St Augustine`s Catholic Primary School (38621-36725)',51.148865,0.264766,'School'),new Array('Oratory of St Francis de Sales Church (61038-65596)',51.384347,0.310336,'ParishChurch'),new Array('Our Lady Of Hartley Catholic Primary School (38606-36710)',51.385569,0.306718,'School'),new Array('St James Church (60998-65576)',51.388052,0.069324,'ParishChurch'),new Array('St James Catholic Primary School (38482-36586)',51.389382,0.066323,'School'),new Array('St Peter And St Paul`s Catholic Primary School (38484-36588)',51.403371,0.089843,'School'),new Array('St Thomas More Church (61250-65704)',51.295211,0.418276,'ParishChurch'),new Array('More Park Catholic Primary School (38624-36728)',51.295211,0.418276,'School'),new Array('St Augustine Church (61078-65616)',51.131713,0.265298,'ParishChurch'),new Array('Woldingham School (38749-36855)',51.276323,-0.051738,'School'),new Array('Our Lady of the Rosary Church (60990-65571)',51.375868,0.016658,'ParishChurch'),new Array('Daughters of Mary and Joseph Convent (65145-65574)',51.363825,-0.004299,'Other'),new Array('St Paul Church (61220-65689)',51.376955,0.359037,'ParishChurch'),new Array('Beechwood Sacred Heart Rc School (39070-37176)',51.135934,0.286862,'School'),new Array('Good Shepherd Catholic Primary School (38492-36596)',51.352799,-0.020691,'School'),new Array('Good Shepherd Church (61000-65577)',51.352799,-0.020691,'ParishChurch'),new Array('St Ambrose (34996-33814)',51.307486,-0.052987,'Church'),new Array('St Mary Church (61178-65667)',51.408408,0.072055,'ParishChurch'),new Array('St Peter Chanel Catholic Primary School (38472-36576)',51.420352,0.118291,'School'),new Array('St Ambrose (36475-33745)',51.307486,-0.052987,'Church'),new Array('St Swithin Church (60992-65572)',51.396116,0.035072,'ParishChurch'),new Array('St Justus Church (61086-65620)',51.178035,0.384008,'ParishChurch'),new Array('St Mary And St Joseph`s Catholic School (38477-36581)',51.425644,0.122929,'School'),new Array('Holy Ghost Fathers Chapel (65144-65569)',51.403326,0.047556,'Other'),new Array('St Bernard (33499-70925)',51.176273,-0.01836,'ParishChurch'),new Array('St Bernard (34863-33733)',51.176273,-0.01836,'ParishChurch'),new Array('St Lawrence of Canterbury Church (61222-65690)',51.427265,0.099406,'ParishChurch'),new Array('St Mark Church (60996-65574)',51.376682,-0.019992,'ParishChurch'),new Array('St Patrick Church (61180-65668)',51.421055,0.064256,'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'; } //