strList="

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

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

St Joseph`s School (1.9 miles)
Zoom on map | View full information

St Therese Of Lisieux (4.6 miles)
Zoom on map | View full information

The Most Holy Family (5 miles)
Zoom on map | View full information

Blessed William Davies School (5.5 miles)
Zoom on map | View full information

St Michael & All Angels (5.8 miles)
Zoom on map | View full information

"; function showResults() { document.getElementById("mapList").style.display="block"; } var records = new Array(new Array('Sacred Heart, Old Colwyn Church (60112-65112)',53.290306,-3.692241,'ParishChurch'),new Array('St Joseph (60077-65096)',53.296986,-3.73353,'ParishChurch'),new Array('St Joseph`s School (38451-36555)',53.296218,-3.73626,'School'),new Array('St Therese Of Lisieux (60048-65086)',53.287293,-3.580328,'ParishChurch'),new Array('The Most Holy Family (60098-65106)',53.28511,-3.812121,'ParishChurch'),new Array('Blessed William Davies School (38452-36556)',53.312092,-3.821385,'School'),new Array('St Michael and All Angels (60081-65098)',53.280061,-3.831287,'ParishChurch'),new Array('Our Lady Star Of The Sea (60096-65105)',53.323334,-3.832194,'ParishChurch'),new Array('Christ the King Church (60154-65130)',53.298123,-3.5337,'Church'),new Array('Our Lady Of The Assumption (60132-65120)',53.316641,-3.496249,'ParishChurch'),new Array('Christ the Word School (71096-75089)',53.3145548,-3.4776832,'School'),new Array('Blessed Edward Jones School (38454-36558)',53.314463,-3.477694,'School'),new Array('St Mary`s School (38453-36557)',53.313801,-3.475284,'School'),new Array('St Illtyd Church (66518-65148)',53.295731,-3.46806,'Church'),new Array('St Winefride`s RC Primary School (39091-37197)',53.257616,-3.451103,'School'),new Array('Y Bugail Da Church (60105-65109)',53.140761,-3.795153,'ParishChurch'),new Array('Ss Peter And Frances, Prestatyn Church (60124-65117)',53.33401,-3.3984,'ParishChurch'),new Array('St Joseph`s (60083-65099)',53.180311,-3.426824,'ParishChurch'),new Array('Our Lady Queen of Martyrs (60063-65091)',53.26431,-4.0914,'ParishChurch'),new Array('St David (60116-32871)',53.274511,-3.261155,'ParishChurch'),new Array('St David (60116-65114)',53.274511,-3.261155,'ParishChurch'),new Array('Our Lady`s School (38461-36565)',53.221358,-4.135205,'School'),new Array('Our Lady and St James (60058-65089)',53.227361,-4.136867,'ParishChurch'),new Array('Bangor University Catholic Chaplaincy (70992-32901)',53.22739929999999,-4.139235999999983,'Other'),new Array('St Gerard`s School Trust School (38463-36567)',53.224218,-4.137669,'School'),new Array('St Winefride`s Catholic Primary School (39088-37194)',53.275128,-3.22698,'School'),new Array('St Winefride Church (60094-65104)',53.27764,-3.223168,'ParishChurch'),new Array('Our Lady Help of Christians (60136-65122)',53.110355,-3.323185,'ParishChurch'),new Array('St Agnes Church (59649-32736)',53.37458760000001,-3.179541599999993,'ParishChurch'),new Array('St Mary, Porthmadog Church (60121-65116)',53.082825,-4.103949,'ParishChurch'),new Array('St Mary Magdalene (60067-65092)',52.995671,-3.934145,'ParishChurch'),new Array('SS Catherine and Martina Church (59639-32735)',53.399211,-3.168356,'ParishChurch'),new Array('Church of the Immaculate Conception (70995-32867)',53.2484987,-3.137612100000069,'ParishChurch'),new Array('The Immaculate Conception (60087-65101)',53.248499,-3.137612,'ParishChurch'),new Array('St Richard Gwyn School (38460-36564)',53.241773,-3.129237,'School'),new Array('St Mary`s School (38455-36559)',53.241773,-3.129237,'School'),new Array('Our Lady of Pity Church (59620-32737)',53.375673,-3.123878,'ParishChurch'),new Array('Our Lady Of Pity School (38136-36240)',53.372989,-3.119644,'School'),new Array('St David`s School (38457-36561)',53.17002,-3.135939,'School'),new Array('St David, Mold (70996-32868)',53.1700197,-3.135938600000031,'ParishChurch'),new Array('St David (60110-65111)',53.17002,-3.135939,'ParishChurch'),new Array('Ladymount Primary School (38130-36234)',53.342284,-3.103984,'School'),new Array('Holy Family Church (59590-32741)',53.34113,-3.103473,'ParishChurch'),new Array('Holy Family Church (63230-32741)',53.34113,-3.103473,'ParishChurch'),new Array('Our Lady and St John Church (59606-32740)',53.326516,-3.091505,'ParishChurch'),new Array('Sacred Heart Church (59631-32734)',53.400812,-3.109876,'ParishChurch'),new Array('St Joseph Church (59718-32739)',53.385469,-3.099989,'ParishChurch'),new Array('Upton Hall Convent School (38235-36339)',53.385469,-3.099989,'School'),new Array('St Joseph`s School (38175-36279)',53.386645,-3.099237,'School'),new Array('Sacred Heart School (38143-36247)',53.405151,-3.10334,'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'; } //