strList="

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

St Therese`s School (0 miles)
Zoom on map | View full information

St Joseph`s RC Comprehensive School School (0.9 miles)
Zoom on map | View full information

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

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

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

St Joseph`s Catholic Infant School (1.2 miles)
Zoom on map | View full information

"; function showResults() { document.getElementById("mapList").style.display="block"; } var records = new Array(new Array('St Therese Of Lisieux Church (45872-53296)',51.599261,-3.815946,'ParishChurch'),new Array('St Therese`s School (37758-35862)',51.599261,-3.815946,'School'),new Array('St Joseph`s RC Comprehensive School School (37755-35859)',51.599896,-3.794514,'School'),new Array('St Joseph`s School (37757-35861)',51.599126,-3.796087,'School'),new Array('St Joseph`s School (37756-35860)',51.59508,-3.78839,'School'),new Array('St Joseph Church (45869-53286)',51.59508,-3.78839,'ParishChurch'),new Array('St Joseph`s Catholic Infant School (38904-37010)',51.594829,-3.789507,'School'),new Array('Our Lady Of The Assumption Church (45816-53072)',51.63091,-3.819059,'ParishChurch'),new Array('Our Lady Of Margam Church (45868-53278)',51.580813,-3.76439,'ParishChurch'),new Array('St Philip Evans Church (45870-53294)',51.620063,-3.752435,'ParishChurch'),new Array('St Joseph`s Catholic Primary School (38903-37009)',51.65392,-3.798715,'School'),new Array('St Joseph`s Presbytery (65928-70910)',51.654338,-3.800192,'ParishChurch'),new Array('St Joseph`s Church (65927-70910)',51.654338,-3.800192,'ParishChurch'),new Array('St Joseph`s School (37759-35863)',51.657279,-3.810082,'School'),new Array('St Joseph`s School (37750-35854)',51.62912,-3.906556,'School'),new Array('St Illtyd`s School (37753-35857)',51.62412,-3.918531,'School'),new Array('St Illtyd Church (45801-53002)',51.623277,-3.920012,'ParishChurch'),new Array('St Illtyd`s RC Primary School (38901-37007)',51.640702,-3.915762,'School'),new Array('St David`s Church (45800-52998)',51.617889,-3.941958,'ParishChurch'),new Array('St Joseph`s School (37751-35855)',51.631372,-3.943965,'School'),new Array('St Joseph`s Cathedral Primary School (8488-75090)',51.6313287,-3.944063,'Other'),new Array('Cathedral Church Of St Joseph (45786-52956)',51.631882,-3.944651,'Cathedral'),new Array('Cathedral Church Of St Joseph (45786-52943)',51.631882,-3.944651,'Cathedral'),new Array('Cathedral Church Of St Joseph (45786-53057)',51.631882,-3.944651,'Cathedral'),new Array('Cathedral Church Of St Joseph (45786-52974)',51.631882,-3.944651,'Cathedral'),new Array('Cathedral Church Of St Joseph (45786-53191)',51.631882,-3.944651,'Cathedral'),new Array('Cathedral Church Of St Joseph (45786-53143)',51.631882,-3.944651,'Cathedral'),new Array('Cathedral Church Of St Joseph (45786-53141)',51.631882,-3.944651,'Cathedral'),new Array('Cathedral Church Of St Joseph (45786-53238)',51.631882,-3.944651,'Cathedral'),new Array('Cathedral Church Of St Joseph (45786-53049)',51.631882,-3.944651,'Cathedral'),new Array('Cathedral Church Of St Joseph (45786-53276)',51.631882,-3.944651,'Cathedral'),new Array('Cathedral Church Of St Joseph (45786-53295)',51.631882,-3.944651,'Cathedral'),new Array('Cathedral Church Of St Joseph (45786-53168)',51.631882,-3.944651,'Cathedral'),new Array('St Peter Church (45803-53009)',51.645683,-3.944259,'ParishChurch'),new Array('Diocese of Menevia (4795-875)',51.618116,-3.961311,'Other'),new Array('Our Lady Of Lourdes Church (45787-52951)',51.626619,-3.960449,'ParishChurch'),new Array('Curial Offices (65232-882)',51.668435,-3.92451,'Other'),new Array('Bishop Vaughan RC Comprehensive School School (37749-35853)',51.66122,-3.935685,'School'),new Array('The Sacred Heart Church (45804-53015)',51.668435,-3.92451,'ParishChurch'),new Array('Our Lady And St Patrick Church (41159-38486)',51.60599,-3.654589,'ParishChurch'),new Array('St Benedict Church (45792-52975)',51.616918,-3.974866,'ParishChurch'),new Array('St Mary`s andamp; St Patrick`s School (36854-34953)',51.60599,-3.654589,'School'),new Array('(iii) St Joseph Of Arimathea Church (1929) (41192-38510)',51.529941,-3.688174,'ParishChurch'),new Array('(iii) St Joseph Of Arimathea Church (1929) (41192-38442)',51.529941,-3.688174,'ParishChurch'),new Array('Holy Cross Church (45790-52963)',51.643123,-3.969992,'ParishChurch'),new Array('Catholic Church, Kenfig Hill Parish Church (30619-31524)',51.529941,-3.688174,'ParishChurch'),new Array('St Joseph`s Catholic Primary School (38902-37008)',51.696934,-3.881093,'School'),new Array('St Benedict Church (45824-53115)',51.697837,-3.88482,'ParishChurch'),new Array('Our Lady Star Of The Sea Church (45789-52957)',51.573302,-3.994116,'ParishChurch'),new Array('St Joseph Church (65924-70908)',51.652947,-3.64949,'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'; } //