strList="

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

Our Lady and the English Martyrs Church (10.3 miles)
Zoom on map | View full information

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

Our Lady Of Perpetual Succour & St Edmund King And Martyr Church (16.1 miles)
Zoom on map | View full information

St Mary`s Catholic Primary School (18.3 miles)
Zoom on map | View full information

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

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

"; function showResults() { document.getElementById("mapList").style.display="block"; } var records = new Array(new Array('Sacred Heart Church (56067-62284)',53.146677,0.336092,'ParishChurch'),new Array('Our Lady and the English Martyrs Church (56071-62290)',53.173955,0.0919,'ParishChurch'),new Array('St Joseph Church (56037-62237)',53.333429,0.270798,'ParishChurch'),new Array('Our Lady Of Perpetual Succour and St Edmund King And Martyr Church (42685-45184)',52.934679,0.493323,'ParishChurch'),new Array('St Mary`s Catholic Primary School (37852-35956)',52.98296,-0.010939,'School'),new Array('St Mary`s Church (55958-62121)',52.984388,-0.018903,'ParishChurch'),new Array('St Mary`s Church (56006-62188)',53.208061,-0.116389,'ParishChurch'),new Array('St Mary Church (56034-62233)',53.364552,-0.005682,'ParishChurch'),new Array('St. Henry Walpole Church (43738-45254)',52.945151,0.725146,'ParishChurch'),new Array('St. Henry Walpole Church (42661-45172)',52.945151,0.725146,'ParishChurch'),new Array('Holy Spirit Church (55970-62137)',53.098303,-0.177841,'ParishChurch'),new Array('St Cecilia Church (43743-45184)',52.845214,0.497058,'ParishChurch'),new Array('St Cecilia Church (42671-45177)',52.845214,0.497058,'ParishChurch'),new Array('Our Lady and St Peter Church (56080-62304)',53.149802,-0.21547,'ParishChurch'),new Array('Our Lady Star Of The Sea Church (43764-45254)',52.953234,0.850857,'ParishChurch'),new Array('Our Lady Star Of The Sea Church (42713-45204)',52.953234,0.850857,'ParishChurch'),new Array('Holy Trinity Church (56005-62187)',52.805736,0.029239,'ParishChurch'),new Array('St Francis de Sales Church (56002-62182)',53.344278,-0.227789,'ParishChurch'),new Array('St Martha`s Catholic Primary School (36899-34999)',52.760941,0.429209,'School'),new Array('Holy Family Church (42689-45187)',52.760941,0.429209,'ParishChurch'),new Array('Queen Elizabeth Hospital Chapel (65966-45186)',52.757809,0.447739,'Other'),new Array('Queen Elizabeth Hospital (36958-35058)',52.756781,0.446999,'Other'),new Array('Our Lady Of The Annunciation Church (42687-45186)',52.747277,0.402162,'ParishChurch'),new Array('National Shrine Of Our Lady (42709-45201)',52.880997,0.853144,'ParishChurch'),new Array('Our Lady Of The Annunciation Church (42803-45254)',52.892945,0.873051,'ParishChurch'),new Array(' (66437-35035)',52.900824,0.890734,'Other')); // 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'; } //