strList="

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

St Thomas` School (0 miles)
Zoom on map | View full information

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

Painsley School (1.8 miles)
Zoom on map | View full information

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

St Giles Church (2.1 miles)
Zoom on map | View full information

St Giles School (2.1 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 (36094-34415)',52.955107,-1.986398,'Church'),new Array('St Thomas` School (36730-34829)',52.955107,-1.986398,'School'),new Array('St Thomas of Canterbury Church (36094-34379)',52.955107,-1.986398,'Church'),new Array('Painsley School (36743-34842)',52.981724,-1.988907,'School'),new Array('St Mary`s Church (65108-34525)',52.951453,-2.032762,'Church'),new Array('St Giles Church (36166-34415)',52.985373,-1.987819,'ParishChurch'),new Array('St Giles School (36718-34817)',52.985373,-1.987819,'School'),new Array('St Filumena Church (36352-34508)',52.981325,-2.071882,'ParishChurch'),new Array('St Filumena`s School (36716-34815)',52.981325,-2.071882,'School'),new Array('St John The Baptist Catholic(a) Primary School (38810-36916)',52.979491,-1.891803,'School'),new Array('St John the Baptist Church (36114-34389)',52.979491,-1.891803,'ParishChurch'),new Array('The Faber School (36712-34811)',53.00905,-1.905009,'School'),new Array('St Augustine of Canterbury Church (36386-34525)',52.972848,-2.10713,'ParishChurch'),new Array('St Augustine`s RC Primary School (38808-36914)',52.972848,-2.10713,'School'),new Array('St Wilfred Church (36112-34415)',53.015448,-1.902833,'Church'),new Array('St Wilfred Church (36112-34388)',53.015448,-1.902833,'Church'),new Array('St Joseph`s School (36731-34830)',52.900573,-1.872748,'School'),new Array('St Mary Church (35936-34299)',52.896826,-1.865415,'ParishChurch'),new Array('St Gregory`s School (36757-34856)',52.983685,-2.137855,'School'),new Array('St Gregory Church (36273-34469)',52.988008,-2.138211,'ParishChurch'),new Array('St Mary`s Abbey Church (36190-34427)',52.917731,-2.13754,'ParishChurch'),new Array('St Mary`s Abbey, OULTON Parish Church (5421-34446)',52.917731,-2.13754,'ParishChurch'),new Array('St Thomas More School (36759-34858)',52.987871,-2.147208,'School'),new Array('St Maria Goretti Church (36446-34555)',53.016495,-2.130268,'ParishChurch'),new Array('St Maria Goretti School (36826-34925)',53.019051,-2.135538,'School'),new Array('St Maria Goretti Catholic Primary School (38809-36915)',53.019051,-2.135538,'School'),new Array('Holy Michael Archangel Church (36116-34446)',52.8836,-2.12859,'ParishChurch'),new Array('St Dominic`s Priory School (38814-36920)',52.904339,-2.150626,'School'),new Array('Holy Michael Archangel Church (36116-34390)',52.8836,-2.12859,'ParishChurch'),new Array('Immaculate Conception and St Dominic Church (36227-34446)',52.905175,-2.150629,'ParishChurch'),new Array('Our Lady of Perpetual Succour Church (36281-34473)',52.99794,-2.167088,'ParishChurch'),new Array('St Wulstan Church (36233-34449)',52.897655,-2.154602,'ParishChurch'),new Array('Our Lady`s School (36754-34853)',52.998839,-2.166779,'School'),new Array('Our Lady and St Benedict`s School (36750-34849)',53.03042,-2.144952,'School'),new Array('Our Lady and St Benedict Church (36154-34409)',53.03042,-2.144952,'ParishChurch'),new Array('Sacred Heart Church (36454-34559)',53.020978,-2.174095,'ParishChurch'),new Array('St Teresa of the Child Jesus Church (36176-34420)',52.982983,-2.200916,'ParishChurch'),new Array('St Joseph`s College School (36761-34860)',52.987868,-2.198749,'School'),new Array('St Teresa`s School (36753-34852)',52.982983,-2.200916,'School'),new Array('St Joseph`s Preparatory School (39100-37206)',52.987868,-2.198749,'School'),new Array('Our Lady of the Angels and St Peter in Chains Church (36408-34536)',53.00769649999999,-2.18891450000001,'ParishChurch'),new Array('St Bernard Church (36092-34378)',53.05302,-2.13651,'ParishChurch'),new Array('SS George and Martin Church (36362-34513)',53.032764,-2.166836,'ParishChurch'),new Array('St George and St Martin`s School (36751-34850)',53.033089,-2.165674,'School'),new Array('St Thomas a Becket Church (36462-34563)',52.876692,-1.802435,'ParishChurch'),new Array('St Thomas Aquinas School (36752-34851)',53.010646,-2.193786,'School'),new Array('Our Lady of the Assumption Church (30548-31483)',52.916782,-2.223779,'ParishChurch'),new Array('Our Lady of the Assumption Church (36132-34398)',52.916782,-2.223779,'ParishChurch'),new Array('St Peter`s School (36748-34847)',53.037297,-2.189462,'School'),new Array('St Peter Church (36047-34355)',52.9927,-2.226198,'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'; } //