strList="

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

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

St Mary School (4 miles)
Zoom on map | View full information

St Mary (4.4 miles)
Zoom on map | View full information

St Anselm (4.8 miles)
Zoom on map | View full information

The Good Shepherd (4.8 miles)
Zoom on map | View full information

Our Lady & St Anselm School (4.8 miles)
Zoom on map | View full information

"; function showResults() { document.getElementById("mapList").style.display="block"; } var records = new Array(new Array('St Joseph School (38074-36178)',53.717423,-2.096395,'School'),new Array('St Joseph (57417-63385)',53.716997,-2.097093,'ParishChurch'),new Array('St Mary School (38113-36217)',53.701797,-2.190377,'School'),new Array('St Mary (57047-63395)',53.702925,-2.202027,'Church'),new Array('St Anselm (57437-63395)',53.665347,-2.173939,'ParishChurch'),new Array('The Good Shepherd (62986-66646)',53.72893,-1.982593,'ParishChurch'),new Array('Our Lady and St Anselm School (38110-36214)',53.665347,-2.173939,'School'),new Array('St Mary`s RC Primary School (38972-37078)',53.645665,-2.102977,'School'),new Array('St Mary of the Annunciation (57207-63356)',53.642459,-2.104555,'Church'),new Array('St Joseph School (38112-36216)',53.693819,-2.219767,'School'),new Array('HMP Buckley Hall (71164-75209)',53.6349775,-2.1450527,'Other'),new Array('Alice Ingham RC Primary School (38983-37089)',53.630208,-2.136872,'School'),new Array('St Peter (57311-63350)',53.697725,-2.251811,'ParishChurch'),new Array('St Peter School (38115-36219)',53.699087,-2.2556,'School'),new Array('St Patrick`s RC Primary School (38979-37085)',53.626397,-2.151496,'School'),new Array('St Patrick (57359-63356)',53.622324,-2.151995,'ParishChurch'),new Array('Sacred Heart School (38660-36764)',53.705592,-1.923766,'School'),new Array('St Mary and St James Ukrainian Catholic Church (71538-76466)',53.6199287,-2.1543283,'Other'),new Array('Sacred Heart (57355-63354)',53.6135713,-2.1322341,'ParishChurch'),new Array('St Vincent de Paul (57361-63357)',53.628156,-2.191149,'ParishChurch'),new Array('St Mary School (38102-36206)',53.791455,-2.229977,'School'),new Array('St Mary of the Assumption (57119-63236)',53.788744,-2.235169,'ParishChurch'),new Array('Sacred Heart RC Primary School (38980-37086)',53.610599,-2.133559,'School'),new Array('Blessed Trinity RC College (39041-37147)',53.7942134,-2.230508099999952,'School'),new Array('St Vincent De Paul RC Primary School (38982-37088)',53.622776,-2.194194,'School'),new Array('St John The Baptist RC Primary School (38978-37084)',53.610526,-2.156336,'School'),new Array('Christ the King (57113-63236)',53.78422,-2.249912,'ParishChurch'),new Array('St James the Less (57347-63350)',53.708145,-2.288225,'ParishChurch'),new Array('Christ The King RCP Schoolandnbsp, (38098-36202)',53.777424,-2.256804,'School'),new Array('St James-the-Less School (38111-36215)',53.704354,-2.291139,'School'),new Array('Sacred Heart and St Patrick (63063-66689)',53.7119,-1.898316,'Church'),new Array('St John the Baptist (57117-63236)',53.804254,-2.232432,'ParishChurch'),new Array('St Columba (63098-66709)',53.728581,-1.896427,'ParishChurch'),new Array('St John the Baptist RC Primary (38100-75689)',53.811908,-2.227036,'School'),new Array('St John the Baptist RC Primary (38100-36204)',53.811908,-2.227036,'School'),new Array('St. Malachy School (38705-36809)',53.742833,-1.893875,'School'),new Array('St Mary Magdalene (57121-63343)',53.796408,-2.259169,'ParishChurch'),new Array('All Saints Catholic Language College School (38117-36221)',53.697385,-2.306766,'School'),new Array('St Malachy (63036-66674)',53.739745,-1.888152,'ParishChurch'),new Array('Holy Family (57353-63354)',53.596307,-2.152847,'ParishChurch'),new Array('St. Mary Magdalene`s RC Primary School (38103-36207)',53.797561,-2.263592,'School'),new Array('Holy Family RC Primary School (38981-37087)',53.594235,-2.152892,'School'),new Array('St Cuthbert`s RC High School (38986-37092)',53.590297,-2.139054,'School'),new Array('Holy Trinity School (38106-36210)',53.823759,-2.224655,'School'),new Array('St Mary School (38114-36218)',53.703178,-2.31511,'School'),new Array('St Augustine Of Canterbury School (38099-36203)',53.790652,-2.281931,'School'),new Array('St Gabriel and the Angels (57133-63243)',53.593327,-2.179116,'ParishChurch'),new Array('St Alban (63081-66699)',53.719618,-1.871763,'Church'),new Array('St Mary (63155-66742)',53.719618,-1.871763,'ParishChurch'),new Array('St Alban (63081-66742)',53.719618,-1.871763,'Church')); // 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'; } //