strList="
St Joseph`s Catholic Primary School Otley, A Voluntary Academy (0 miles)
Zoom on map | View full information
Our Lady and All Saints (0 miles)
Zoom on map | View full information
SS John Fisher and Thomas More (2 miles)
Zoom on map | View full information
St Mary’s Menston Catholic Voluntary Academy (2.2 miles)
Zoom on map | View full information
SS Peter and Paul (2.9 miles)
Zoom on map | View full information
Ss Peter & Paul School (2.9 miles)
Zoom on map | View full information
Leeds Trinity University (4.4 miles)
Zoom on map | View full information
";
function showResults()
{
document.getElementById("mapList").style.display="block";
}
var records = new Array(new Array('St Joseph`s Catholic Primary School Otley, A Voluntary Academy (38686-36790)',53.906072,-1.694327,'School'),new Array('Our Lady and All Saints (63011-66661)',53.906701,-1.694429,'ParishChurch'),new Array('SS John Fisher and Thomas More (63068-66692)',53.905181,-1.743861,'ParishChurch'),new Array('St Mary’s Menston Catholic Voluntary Academy (38708-36812)',53.881768,-1.727834,'School'),new Array('SS Peter and Paul (63074-66695)',53.86545,-1.699215,'ParishChurch'),new Array('Ss Peter and Paul School (38662-36766)',53.86545,-1.699215,'School'),new Array('Leeds Trinity University (75981-78622)',53.8487954,-1.6473539,'Other'),new Array('Leeds Trinity University Chapel (75982-78622)',53.8487954,-1.6473539,'Other'),new Array('Sacred Heart School (38659-36763)',53.926528,-1.807157,'School'),new Array('Immaculate Conception (62999-66660)',53.834771,-1.719948,'Church'),new Array('St Anthony (38666-36770)',53.837176,-1.751327,'School'),new Array('Horsforth School (38706-36810)',53.839186,-1.631094,'School'),new Array('St Mary (63157-66744)',53.83976,-1.633566,'ParishChurch'),new Array('St Aidan (63078-66767)',53.842707,-1.766371,'ParishChurch'),new Array('Holy Name School (38647-36751)',53.847208,-1.604424,'School'),new Array('Holy Name of Jesus (62993-66744)',53.846635,-1.602271,'Church'),new Array('Sacred Heart (63059-66687)',53.927822,-1.830329,'ParishChurch'),new Array('Our Lady and St. Brendan School (38654-36758)',53.825569,-1.717047,'School'),new Array('St Francis of Assisi (63009-66660)',53.82364,-1.734393,'ParishChurch'),new Array('St Walburga (63201-66767)',53.833718,-1.784821,'ParishChurch'),new Array('St. Walburga School (38728-36832)',53.833528,-1.789487,'School'),new Array('St. Francis School (38677-36781)',53.816899,-1.738369,'School'),new Array('St Peter (63016-66710)',53.8165309,-1.743214200000011,'Church'),new Array('St. Joseph School (38690-36794)',53.849769,-1.828775,'School'),new Array('St. Paul School (38720-36824)',53.852205,-1.557738,'School'),new Array('St. Clare School (38672-78482)',53.809006,-1.71772,'School'),new Array('St Clare (63043-66678)',53.808344,-1.719046,'ParishChurch'),new Array('Sacred Heart (63050-66682)',53.842389,-1.830648,'ParishChurch'),new Array('St. Urban School (38727-36831)',53.839484,-1.559468,'School'),new Array('Cardinal Heenan Catholic High School (38638-36742)',53.839484,-1.559468,'School'),new Array('St Paul the Apostle (63186-66657)',53.890224,-1.51725,'ParishChurch'),new Array('St Bede’s and St Joseph’s Catholic College (38669-36773)',53.815225,-1.787407,'School'),new Array('St Mary and St Monica (63165-66682)',53.829032,-1.821157,'Church'),new Array('Christ the King (62979-66642)',53.806975,-1.617239,'ParishChurch'),new Array('St. Joseph School (38687-36791)',53.79945,-1.658391,'School'),new Array('St Joseph (63141-66734)',53.79945,-1.658391,'ParishChurch'),new Array('Christ The King School (38639-36743)',53.806975,-1.617239,'School'),new Array('St. Cuthbert and The First Martyrs School (38674-36778)',53.809271,-1.78484,'School'),new Array('Sacred Heart School (38658-36762)',53.811955,-1.595461,'School'),new Array('Mount St Joseph`s (71395-78357)',53.8204224,-1.5704571,'Other'),new Array('Hinsley Hall (65230-881)',53.819255,-1.570267,'Other'),new Array('Immaculate Heart of Mary (63003-66657)',53.837967,-1.538528,'ParishChurch'),new Array('St Cuthbert (63101-66665)',53.813143,-1.804898,'Church'),new Array('First Martyrs of Rome (63018-66665)',53.813143,-1.804898,'ParishChurch'),new Array('Our Lady of Lourdes (63034-66673)',53.816224,-1.57727,'ParishChurch'),new Array('St Urban (63199-66673)',53.818887,-1.572357,'Church'),new Array('Immaculate Heart Of Mary School (38650-36754)',53.837546,-1.536436,'School'),new Array('English Martyrs (63013-66662)',53.944762,-1.881115,'ParishChurch'),new Array('Diocese of Leeds (4801-881)',53.818833,-1.567796,'Other'),new Array('St Patrick (63176-66754)',53.797293,-1.76266,'ParishChurch'));
// 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';
}
//