strList="
St Wulstan & St Thomas of Canterbury Church (0 miles)
Zoom on map | View full information
St Wulstan`s School (0.9 miles)
Zoom on map | View full information
Holy Family Church (2.8 miles)
Zoom on map | View full information
Holy Family Church (2.8 miles)
Zoom on map | View full information
Our Lady and St Pius X Church (3.1 miles)
Zoom on map | View full information
St Ambrose School (3.6 miles)
Zoom on map | View full information
St Ambrose Church (3.7 miles)
Zoom on map | View full information
";
function showResults()
{
document.getElementById("mapList").style.display="block";
}
var records = new Array(new Array('St Wulstan and St Thomas of Canterbury Church (36209-34437)',52.34185,-2.275333,'ParishChurch'),new Array('St Wulstan`s School (36770-34869)',52.346281,-2.294356,'School'),new Array('Holy Family Church (36033-34437)',52.3740944,-2.3146169,'ParishChurch'),new Array('Holy Family Church (36033-34348)',52.3740944,-2.3146169,'ParishChurch'),new Array('Our Lady and St Pius X Church (36104-34384)',52.386229,-2.277886,'ParishChurch'),new Array('St Ambrose School (36774-34873)',52.389143,-2.240274,'School'),new Array('St Ambrose Church (36326-34495)',52.390495,-2.238488,'ParishChurch'),new Array('Holy Trinity School (38803-36909)',52.390495,-2.238488,'School'),new Array('Winterfold House School (38802-36908)',52.362173,-2.184941,'School'),new Array('St Mary Church (36292-34478)',52.367368,-2.180307,'ParishChurch'),new Array('St Joseph`s School (36766-34865)',52.263183,-2.166331,'School'),new Array('Sacred Heart and St Catherine of Alexandria Church (36316-34490)',52.258171,-2.155881,'ParishChurch'),new Array('Hagley Catholic High School (36775-34874)',52.422916,-2.149506,'School'),new Array('SS Oswald and Wulstan Church (36049-34506)',52.406941,-2.117451,'ParishChurch'),new Array('St Richard and St Hubert Church (36370-34487)',52.26213569999999,-2.1310816,'Church'),new Array('St Richard and St Hubert Church (36370-34517)',52.26213569999999,-2.1310816,'Church'),new Array('St Peter Church (36160-34412)',52.3270154,-2.0704113,'ParishChurch'),new Array('St Peter`s School (36765-34864)',52.327002,-2.070416,'School'),new Array('St Joseph`s School (36667-34766)',52.445462,-2.150157,'School'),new Array('Our Lady and All Saints Church (36348-34506)',52.454475,-2.145876,'ParishChurch'),new Array('St Joseph Church (36314-34489)',52.211661,-2.183071,'ParishChurch'),new Array('St Joseph`s School (36773-34872)',52.211661,-2.183071,'School'),new Array('St George`s Catholic Primary School (38800-36906)',52.19946,-2.22778,'School'),new Array('St George Church (36255-34460)',52.19492,-2.220527,'ParishChurch'),new Array('Our Lady Queen of Peace Church (36271-34468)',52.18713,-2.23674,'ParishChurch'),new Array('Our Lady Queen of Peace School (36771-34870)',52.18713,-2.23674,'School'),new Array('Blessed Edward Oldcorne School (36780-34879)',52.181353,-2.211173,'School'),new Array('St Mary Church (36215-34440)',52.479594,-2.121959,'ParishChurch'),new Array('St Mary`s School (36665-34764)',52.476651,-2.115517,'School'),new Array('Our Lady of Lourdes Church (36452-34558)',52.496496,-2.171659,'ParishChurch'),new Array('St Mary`s Convent School (38801-36907)',52.180419,-2.205231,'School'),new Array('Our Lady of Perpetual Succour Church (35994-34328)',52.39141,-2.010859,'ParishChurch'),new Array('St James School (36611-34710)',52.392309,-2.011873,'School'),new Array('Our Lady and St Kenelm School (36668-34767)',52.449716,-2.055928,'School'),new Array('St John the Baptist Church (36207-34436)',52.183932,-2.15388,'ParishChurch'),new Array('St John the Baptist Church (36207-34460)',52.183932,-2.15388,'ParishChurch'),new Array('Our Lady and St Kenelm Church (36231-34448)',52.450412,-2.046733,'ParishChurch'),new Array('St Columba`s School (36623-34722)',52.394683,-1.990933,'School'),new Array('Our Lady of Lourdes Church (36400-34532)',52.475762,-2.068063,'ParishChurch'),new Array('Our Lady of Mount Carmel School (36776-34875)',52.29817,-1.9712,'School'),new Array('St Mary Church (36464-34564)',52.349447,-1.960861,'Church'),new Array('St Mary Church (36464-34487)',52.349447,-1.960861,'Church'),new Array('St Peter`s School (36628-34727)',52.436622,-2.000147,'School'),new Array('St Peter Church (35956-34309)',52.436064,-1.9985,'ParishChurch'),new Array('St Brigid`s School (36596-34695)',52.411438,-1.976199,'School'),new Array('Our Lady and St Brigid Church (36380-34522)',52.4114529,-1.9761916,'ParishChurch'),new Array('St Bernadette`s School (36737-34836)',52.533095,-2.199355,'School'),new Array('St John Fisher Church (36144-34404)',52.39537,-1.964303,'ParishChurch'),new Array('St Peter and the English Martyrs Church (36338-34501)',52.518318,-2.125662,'ParishChurch'),new Array('St Bernadette Church (36298-34481)',52.533848,-2.190189,'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';
}
//