strList="

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

St. John The Baptist School (0.7 miles)
Zoom on map | View full information

St. Wilfrid School (2.4 miles)
Zoom on map | View full information

St Wilfrid’s Catholic High School and Sixth Form College (2.5 miles)
Zoom on map | View full information

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

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

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

"; function showResults() { document.getElementById("mapList").style.display="block"; } var records = new Array(new Array('St John the Baptist (63118-66721)',53.694926,-1.423296,'ParishChurch'),new Array('St. John The Baptist School (38682-36786)',53.699545,-1.408238,'School'),new Array('St. Wilfrid School (38729-36833)',53.674826,-1.374985,'School'),new Array('St Wilfrid’s Catholic High School and Sixth Form College (38877-36983)',53.696475,-1.361754,'School'),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('St Thomas à Beckett Catholic Secondary School (38726-36830)',53.660989,-1.482883,'School'),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. Mary School (38707-36811)',53.745518,-1.471398,'School'),new Array('St Mary (63161-66746)',53.751666,-1.471428,'ParishChurch'),new Array('St. Joseph School (38698-36802)',53.691042,-1.317026100000021,'School'),new Array('St Joseph (63139-66733)',53.691751,-1.316909,'ParishChurch'),new Array('SS Peter and Paul (63072-66694)',53.647881,-1.499048,'ParishChurch'),new Array('English Martyrs (62984-66645)',53.67771,-1.531773,'Church'),new Array('English Martyrs School (38642-36746)',53.678032,-1.531239,'School'),new Array('English Martyrs (62984-66714)',53.67771,-1.531773,'Church'),new Array('Address: Cobblers Lane School (38646-36750)',53.693241,-1.290124,'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 Philip (63189-66761)',53.749403,-1.546641,'ParishChurch'),new Array('St. Philip School (38722-36826)',53.750197,-1.547542,'School'),new Array('St. Ignatius School (38679-36783)',53.66884,-1.575612,'School'),new Array('Sacred Heart (63055-66685)',53.611176,-1.35175,'ParishChurch'),new Array('Sacred Heart School (38661-36765)',53.610491,-1.354798,'School'),new Array('St Ignatius (63103-66712)',53.66884,-1.575612,'ParishChurch'),new Array('Our Lady And Saint Joseph Church (44683-48300)',53.598696,-1.453634,'ParishChurch'),new Array('St Benedict (63093-66706)',53.796533,-1.386166,'ParishChurch'),new Array('St. Benedict School (38670-36774)',53.795795,-1.382473,'School'),new Array('St Michael (63170-66751)',53.7097621,-1.2461109,'Church'),new Array('St Michael (63170-66733)',53.7097621,-1.2461109,'Church'),new Array('St. Joseph School (38685-36789)',53.781635,-1.53045,'School'),new Array('Corpus Christi (62981-66643)',53.796531,-1.487229,'ParishChurch'),new Array('Corpus Christi Catholic College (38641-36745)',53.797213,-1.484792,'School'),new Array('Corpus Christi (62981-74283)',53.796531,-1.487229,'ParishChurch'),new Array('Saint Paul Church (44681-48290)',53.588205,-1.370637,'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'),new Array('St Francis of Assisi (63110-66716)',53.779498,-1.547364,'ParishChurch'),new Array('St Theresa of the Child Jesus (63193-66763)',53.805628,-1.452831,'ParishChurch'),new Array('St. Anthony School (38664-36768)',53.771506,-1.563897,'School'),new Array('St Theresa of the Child Jesus (63193-74283)',53.805628,-1.452831,'ParishChurch'),new Array('Corpus Christi School (38640-36744)',53.798023,-1.505578,'School'),new Array('St Anthony of Padua (63087-66702)',53.772354,-1.564905,'ParishChurch'),new Array('Mount St. Mary School (38652-78335)',53.793863,-1.526883,'School'),new Array('Mount St. Mary School (38652-36756)',53.793863,-1.526883,'School'),new Array('St Patrick (38716-36820)',53.800293,-1.51222,'School'),new Array('St Patrick (63182-66757)',53.800293,-1.51222,'ParishChurch'),new Array('St Francis (63112-66717)',53.743891,-1.604348,'ParishChurch'),new Array('St Dominic`s Catholic Primary School (37370-35474)',53.577562,-1.457123,'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'; } //