strList="

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

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

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

St Peter (2.5 miles)
Zoom on map | View full information

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

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

St Peter School (2.7 miles)
Zoom on map | View full information

"; function showResults() { document.getElementById("mapList").style.display="block"; } var records = new Array(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 Joseph School (38112-36216)',53.693819,-2.219767,'School'),new Array('St Peter (57311-63350)',53.697725,-2.251811,'ParishChurch'),new Array('St Anselm (57437-63395)',53.665347,-2.173939,'ParishChurch'),new Array('Our Lady and St Anselm School (38110-36214)',53.665347,-2.173939,'School'),new Array('St Peter School (38115-36219)',53.699087,-2.2556,'School'),new Array('St James the Less (57347-63350)',53.708145,-2.288225,'ParishChurch'),new Array('St Joseph (57417-63385)',53.716997,-2.097093,'ParishChurch'),new Array('St Joseph School (38074-36178)',53.717423,-2.096395,'School'),new Array('St James-the-Less School (38111-36215)',53.704354,-2.291139,'School'),new Array('All Saints Catholic Language College School (38117-36221)',53.697385,-2.306766,'School'),new Array('HMP Buckley Hall (71164-75209)',53.6349775,-2.1450527,'Other'),new Array('St Mary School (38114-36218)',53.703178,-2.31511,'School'),new Array('St Vincent de Paul (57361-63357)',53.628156,-2.191149,'ParishChurch'),new Array('St Mary`s RC Primary School (38972-37078)',53.645665,-2.102977,'School'),new Array('Alice Ingham RC Primary School (38983-37089)',53.630208,-2.136872,'School'),new Array('The Immaculate Conception (57179-63266)',53.703814,-2.321975,'ParishChurch'),new Array('St Mary of the Annunciation (57207-63356)',53.642459,-2.104555,'Church'),new Array('St Patrick`s RC Primary School (38979-37085)',53.626397,-2.151496,'School'),new Array('St Vincent De Paul RC Primary School (38982-37088)',53.622776,-2.194194,'School'),new Array('St Veronica School (38116-36220)',53.689044,-2.326815,'School'),new Array('St Patrick (57359-63356)',53.622324,-2.151995,'ParishChurch'),new Array('St Mary and St James Ukrainian Catholic Church (71538-76466)',53.6199287,-2.1543283,'Other'),new Array('Christ The King RCP Schoolandnbsp, (38098-36202)',53.777424,-2.256804,'School'),new Array('Christ the King (57113-63236)',53.78422,-2.249912,'ParishChurch'),new Array('St Mary of the Assumption (57119-63236)',53.788744,-2.235169,'ParishChurch'),new Array('St Mary School (38102-36206)',53.791455,-2.229977,'School'),new Array('St John The Baptist RC Primary School (38978-37084)',53.610526,-2.156336,'School'),new Array('St Joseph (57345-63349)',53.646016,-2.31869,'ParishChurch'),new Array('Blessed Trinity RC College (39041-37147)',53.7942134,-2.230508099999952,'School'),new Array('Sacred Heart (57355-63354)',53.6135713,-2.1322341,'ParishChurch'),new Array('Sacred Heart RC Primary School (38980-37086)',53.610599,-2.133559,'School'),new Array('St Joseph School (38067-36171)',53.644555,-2.322871,'School'),new Array('St Mary Magdalene (57121-63343)',53.796408,-2.259169,'ParishChurch'),new Array('St Augustine Of Canterbury School (38099-36203)',53.790652,-2.281931,'School'),new Array('St John the Baptist (57117-63236)',53.804254,-2.232432,'ParishChurch'),new Array('St. Mary Magdalene`s RC Primary School (38103-36207)',53.797561,-2.263592,'School'),new Array('St Anne And St Joseph School (38084-36188)',53.750074,-2.352038,'School'),new Array('St Gabriel and the Angels (57133-63243)',53.593327,-2.179116,'ParishChurch'),new Array('St John the Baptist (6059-63243)',53.5928148,-2.1815392,'ParishChurch'),new Array('Holy Family (57353-63354)',53.596307,-2.152847,'ParishChurch'),new Array('Holy Family RC Primary School (38981-37087)',53.594235,-2.152892,'School'),new Array('St Anne (57035-63194)',53.751621,-2.357094,'ParishChurch'),new Array('St Joseph And St Bede School (38066-36170)',53.603848,-2.279792,'School'),new Array('St Joseph`s Park Hill School (39044-37150)',53.798122,-2.285351,'School'),new Array('St Joseph (57183-63268)',53.591811,-2.220311,'ParishChurch'),new Array('St John the Baptist RC Primary (38100-36204)',53.811908,-2.227036,'School'),new Array('St John the Baptist RC Primary (38100-75689)',53.811908,-2.227036,'School'),new Array('St Gabriel`s RC Primary School (38977-37083)',53.587859,-2.175181,'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'; } //