strList="
Rosary School (0 miles)
Zoom on map | View full information
Our Lady of the Rosary and St Therese of Lisieux Church (0 miles)
Zoom on map | View full information
St Vincent`s School (1.1 miles)
Zoom on map | View full information
St Joseph`s School (1.2 miles)
Zoom on map | View full information
Holy Family Church (1.3 miles)
Zoom on map | View full information
Holy Family School (1.3 miles)
Zoom on map | View full information
St Joseph Church (1.3 miles)
Zoom on map | View full information
";
function showResults()
{
document.getElementById("mapList").style.display="block";
}
var records = new Array(new Array('Rosary School (36592-34691)',52.484155,-1.849182,'School'),new Array('Our Lady of the Rosary and St Therese of Lisieux Church (35996-34329)',52.484604,-1.849386,'ParishChurch'),new Array('St Vincent`s School (36583-34682)',52.484815,-1.875627,'School'),new Array('St Joseph`s School (36600-34699)',52.495662,-1.872076,'School'),new Array('Holy Family Church (36002-34332)',52.465676,-1.845815,'ParishChurch'),new Array('Holy Family School (36585-34684)',52.465676,-1.845815,'School'),new Array('St Joseph Church (36344-34504)',52.498951,-1.870991,'ParishChurch'),new Array('St Vincent de Paul Church (36182-34423)',52.488029,-1.880021,'ParishChurch'),new Array('St Cuthbert`s School (36629-34728)',52.487006,-1.818011,'School'),new Array('Holy Trinity School (36639-34738)',52.467299,-1.864533,'School'),new Array('St Bernadette`s School (36619-34718)',52.469434,-1.826356,'School'),new Array('Corpus Christi Church (36006-34334)',52.4807287,-1.8132167,'ParishChurch'),new Array('Corpus Christi School (36588-34687)',52.480641,-1.812545,'School'),new Array('St Anne`s School (36598-34697)',52.470417,-1.879613,'School'),new Array('Diocesan Offices (342-873)',52.4865883,-1.890678200000025,'Other'),new Array('Aston University Presbytery (36017-34340)',52.486637,-1.890952,'Other'),new Array('St Chad`s Cathedral Church (36223-34444)',52.486099,-1.891987,'ParishChurch'),new Array('Polish Millenium House (65115-34533)',52.479201,-1.890205,'Other'),new Array('St Michael Church (36402-34533)',52.479581,-1.892972,'ParishChurch'),new Array('Aston Hall (65105-34446)',52.506614,-1.883595,'Other'),new Array('Archdiocese of Birmingham Offices (4791-871)',52.485888,-1.898037,'Other'),new Array('SS Mary and John School (36606-34705)',52.516287,-1.851165,'School'),new Array('Oznam House (65113-34315)',52.516042,-1.848778,'Other'),new Array('St Chad`s School (36599-34698)',52.492471,-1.901115,'School'),new Array('English Martyrs Church (36004-34333)',52.451491,-1.861418,'ParishChurch'),new Array('St Catherine of Siena Church (35960-34311)',52.472333,-1.900468,'ParishChurch'),new Array('St Catherine of Siena School (36597-34696)',52.471687,-1.902104,'School'),new Array('St Wilfrid Church (35962-34312)',52.50478,-1.802159,'ParishChurch'),new Array('Sacred Heart and St Margaret Mary Church (36332-34498)',52.50577,-1.893645,'ParishChurch'),new Array('English Martyrs School (36589-34688)',52.451017,-1.863671,'School'),new Array('St Wilfrid`s School (36822-34921)',52.504112,-1.800542,'School'),new Array('SS Peter and Paul Church (36277-34471)',52.517643,-1.823588,'ParishChurch'),new Array('St Mary and St John Church (35968-34315)',52.51768449999999,-1.8236986,'ParishChurch'),new Array('St Peter and St Paul School (36614-34713)',52.517643,-1.823588,'School'),new Array('Blessed Robert Grissold Church (36067-34301)',52.4563193,-1.8913893,'Church'),new Array('SS John and Martin Church (35954-34308)',52.456251,-1.890968,'ParishChurch'),new Array('Blessed Robert Grissold Church (36067-34365)',52.4563193,-1.8913893,'Church'),new Array('Holy Souls School (36593-34692)',52.447588,-1.819924,'School'),new Array('Sacred Heart School (36634-34733)',52.509525,-1.901504,'School'),new Array('St Martin de Porres School (36626-34725)',52.447682,-1.880543,'School'),new Array('St Francis School (36601-34700)',52.497749,-1.914213,'School'),new Array('St Francis Church (35974-34318)',52.498901,-1.915507,'ParishChurch'),new Array('Sacred Heart and Holy Souls Church (36432-34548)',52.445733,-1.818549,'ParishChurch'),new Array('SS John and Monica School (36635-34734)',52.450644,-1.893895,'School'),new Array('Archbishop Ilsley School (36640-34739)',52.444866,-1.821833,'School'),new Array('St Edmund`s School (36604-34703)',52.487004,-1.923202,'School'),new Array('St Teresa Church (35988-34325)',52.516136,-1.904982,'ParishChurch'),new Array('Priory School (38794-36900)',52.461089,-1.915034,'School'),new Array('Abbey School (36586-34685)',52.529501,-1.836763,'School'),new Array('Saint Clare`s School (36633-34732)',52.509652,-1.913954,'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';
}
//