strList="

St Thomas à Beckett Catholic Secondary School (0 miles)
Zoom on map | View full information

SS Peter and Paul (1.1 miles)
Zoom on map | View full information

St. Austin School (1.9 miles)
Zoom on map | View full information

St Austin (2 miles)
Zoom on map | View full information

English Martyrs (2.3 miles)
Zoom on map | View full information

English Martyrs School (2.3 miles)
Zoom on map | View full information

English Martyrs (2.3 miles)
Zoom on map | View full information

"; function showResults() { document.getElementById("mapList").style.display="block"; } var records = new Array(new Array('St Thomas à Beckett Catholic Secondary School (38726-36830)',53.660989,-1.482883,'School'),new Array('SS Peter and Paul (63072-66694)',53.647881,-1.499048,'ParishChurch'),new Array('St. Austin School (38668-36772)',53.687256,-1.492055,'School'),new Array('St Austin (63106-66714)',53.686974,-1.502022,'ParishChurch'),new Array('English Martyrs (62984-66714)',53.67771,-1.531773,'Church'),new Array('English Martyrs School (38642-36746)',53.678032,-1.531239,'School'),new Array('English Martyrs (62984-66645)',53.67771,-1.531773,'Church'),new Array('St John the Baptist (63118-66721)',53.694926,-1.423296,'ParishChurch'),new Array('St. Ignatius School (38679-36783)',53.66884,-1.575612,'School'),new Array('St Ignatius (63103-66712)',53.66884,-1.575612,'ParishChurch'),new Array('St. John The Baptist School (38682-36786)',53.699545,-1.408238,'School'),new Array('Our Lady And Saint Joseph Church (44683-48300)',53.598696,-1.453634,'ParishChurch'),new Array('St. Wilfrid School (38729-36833)',53.674826,-1.374985,'School'),new Array('St Teresa Church (44680-48288)',53.588283,-1.517639,'ParishChurch'),new Array('St Wilfrid’s Catholic High School and Sixth Form College (38877-36983)',53.696475,-1.361754,'School'),new Array('Holy trinity (37597-35701)',53.57860789999999,-1.457849900000042,'School'),new Array('St. Mary School (38707-36811)',53.745518,-1.471398,'School'),new Array('St Dominic`s Catholic Primary School (37370-35474)',53.577562,-1.457123,'School'),new Array('Blessed Sacrament Church (44674-48245)',53.575069,-1.464344,'ParishChurch'),new Array('St Mary (63161-66746)',53.751666,-1.471428,'ParishChurch'),new Array('Sacred Heart School (38661-36765)',53.610491,-1.354798,'School'),new Array('Sacred Heart (63055-66685)',53.611176,-1.35175,'ParishChurch'),new Array('Saint Mary Magdalene Church (44679-48285)',53.576567,-1.417522,'ParishChurch'),new Array('St Philip (63189-66761)',53.749403,-1.546641,'ParishChurch'),new Array('St. Philip School (38722-36826)',53.750197,-1.547542,'School'),new Array('St Paulinus (63015-66663)',53.687397,-1.643278,'ParishChurch'),new Array('Saint Paul Church (44681-48290)',53.588205,-1.370637,'ParishChurch'),new Array('St. Paulinus School (38721-36825)',53.685362,-1.645324,'School'),new Array('St John Fisher Catholic Voluntary Academy (38680-36784)',53.694943,-1.645031,'School'),new Array('St Joseph (63123-66724)',53.700473,-1.639895,'ParishChurch'),new Array('St Joseph (63139-66733)',53.691751,-1.316909,'ParishChurch'),new Array('St Joseph Catholic Primary Academy (38696-36800)',53.725023,-1.346954,'School'),new Array('St Joseph (63131-66728)',53.725023,-1.346954,'ParishChurch'),new Array('St. Joseph School (38698-36802)',53.691042,-1.317026100000021,'School'),new Array('St Peter (63149-66738)',53.75946769999999,-1.527466499999946,'Church'),new Array('St Peter (63149-66761)',53.75946769999999,-1.527466499999946,'Church'),new Array('St. Joseph School (38695-36799)',53.700548,-1.646847,'School'),new Array('St Francis (63112-66717)',53.743891,-1.604348,'ParishChurch'),new Array('St. Mary School (38710-36814)',53.716758,-1.642378,'School'),new Array('St Mary (63167-66749)',53.716954,-1.641664,'ParishChurch'),new Array('Holy Rood Rectory (65156-70854)',53.549889,-1.484147,'ParishChurch'),new Array('Holy Rood Primary School (65157-70854)',53.549589,-1.491697,'Other'),new Array('Address: Highcliffe Road School (38676-36780)',53.745253,-1.608641,'School'),new Array('Address: Cobblers Lane School (38646-36750)',53.693241,-1.290124,'School'),new Array('St. Anthony School (38664-36768)',53.771506,-1.563897,'School'),new Array('Holy Spirit (62997-66652)',53.709024,-1.670794,'ParishChurch'),new Array('Holy Spirit School (38649-36753)',53.707819,-1.671858,'School'),new Array('St Anthony of Padua (63087-66702)',53.772354,-1.564905,'ParishChurch'),new Array('St Francis of Assisi (63110-66702)',53.779498,-1.547364,'ParishChurch'),new Array('St. Francis Of Assisi School (38678-36782)',53.778744,-1.547645,'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'; } //