strList="
St Philip`s Priory (0 miles)
Zoom on map | View full information
Our Lady Immaculate Church (0 miles)
Zoom on map | View full information
Our Lady Immaculate (0.3 miles)
Zoom on map | View full information
The Holy Name Church (0.9 miles)
Zoom on map | View full information
St Pius X (1.6 miles)
Zoom on map | View full information
The Blessed Sacrament Church (1.7 miles)
Zoom on map | View full information
Saint John Payne Rc School (1.7 miles)
Zoom on map | View full information
";
function showResults()
{
document.getElementById("mapList").style.display="block";
}
var records = new Array(new Array('St Philip`s Priory (38830-36936)',51.726565,0.462752,'School'),new Array('Our Lady Immaculate Church (39248-37347)',51.726565,0.462752,'ParishChurch'),new Array('Our Lady Immaculate (36509-34608)',51.729465,0.468109,'School'),new Array('The Holy Name Church (39254-37347)',51.716185,0.476507,'ParishChurch'),new Array('St Pius X (36510-34609)',51.74972,0.460708,'School'),new Array('The Blessed Sacrament Church (39250-37349)',51.748332,0.444493,'ParishChurch'),new Array('Saint John Payne Rc School (38827-36933)',51.751847,0.463041,'School'),new Array('St John Payne Comprehensive School (36516-34615)',51.75248,0.460757,'School'),new Array('The Bishops` (36513-34612)',51.751605,0.499628,'School'),new Array('St Augustine Of Canterbury Church (39406-37347)',51.751146,0.497545,'ParishChurch'),new Array('New Hall School (36515-78138)',51.76421,0.51073,'School'),new Array('New Hall Preparatory School (36508-34607)',51.76421,0.51073,'School'),new Array('New Hall School (36515-34614)',51.76421,0.51073,'School'),new Array('Our Lady And St Joseph Church (39416-37460)',51.660894,0.437513,'ParishChurch'),new Array('St John The Evangelist And St Erconwald Church (39354-37425)',51.663098,0.371589,'ParishChurch'),new Array('The Most Holy Redeemer Church (39230-37333)',51.620919,0.416646,'ParishChurch'),new Array('St Peter`s Catholic Primary School (36520-34619)',51.61285,0.443243,'School'),new Array('St Joseph The Worker Church (39346-37419)',51.632329,0.344911,'ParishChurch'),new Array('St Joseph the Worker (36507-34606)',51.632329,0.344911,'School'),new Array('Our Lady Of Good Counsel Church (39444-37486)',51.611339,0.518114,'ParishChurch'),new Array('Holy Family (36489-34588)',51.79128,0.629948,'School'),new Array('English Martyrs Church (39284-37378)',51.645162,0.616031,'ParishChurch'),new Array('Holy Trinity Church (39404-37378)',51.645162,0.616031,'ParishChurch'),new Array('St Joseph`s (36511-34610)',51.645028,0.619189,'School'),new Array('St Francis (36512-34611)',51.732865,0.672337,'School'),new Array('The Holy Family And All Saints Church (39446-37487)',51.799533,0.638899,'ParishChurch'),new Array('St Margaret Of Scotland Church (39288-37380)',51.634936,0.299538,'ParishChurch'),new Array('Assumption Of Our Lady Church (39372-37435)',51.730671,0.684967,'ParishChurch'),new Array('St Helen Church (39380-37441)',51.703137,0.244711,'ParishChurch'),new Array('St Helen`s Catholic Junior School (38828-36934)',51.628678,0.30357,'School'),new Array('Brentwood Diocese (71011-867)',51.6286785,0.303570499999978,'Other'),new Array('St Helen`s Junior School (36504-34603)',51.627072,0.303402,'School'),new Array('Cathedral Church Of St Mary and St Helen Church (39210-37315)',51.620641,0.305749,'Cathedral'),new Array('St Helen`s Infant School (36505-34604)',51.61911,0.305874,'School'),new Array('Ursuline Convent High School (36514-34613)',51.61766,0.304573,'School'),new Array('De La Salle School (36521-34620)',51.580264,0.464908,'School'),new Array('Our Lady of Ransom (36524-34623)',51.594736,0.584772,'School'),new Array('Holy Cross And All Saints Church (39440-37480)',51.611762,0.299045,'ParishChurch'),new Array('St Anne Line Infant School (36518-34617)',51.569992,0.446962,'School'),new Array('St Anne Line Junior School (36517-34616)',51.569992,0.446962,'School'),new Array('Holy Trinity Parish Church (6788-71430)',51.568822,0.447419,'ParishChurch'),new Array('St Teresa`s (36519-34618)',51.569834,0.493307,'School'),new Array('Our Lady And St Anne Line Church (39290-37381)',51.872761,0.365144,'ParishChurch'),new Array('St Basil The Great Presbytery (39149-71431)',51.568416,0.493633,'Other'),new Array('St Basil The Great Church (39150-71430)',51.568416,0.493633,'ParishChurch'),new Array('Marillac Hospital Chapel (39472-37502)',51.600301,0.302885,'Other'),new Array('St Mary Church (39398-37487)',51.849575,0.629077,'ParishChurch'),new Array('St Therese Of Lisieux Church (39360-71430)',51.566723,0.422904,'ParishChurch'),new Array('Our Lady Of Ransom Church (39386-37444)',51.589496,0.606579,'ParishChurch'),new Array('Our Lady Queen Of Peace Church (39232-37334)',51.879219,0.555524,'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';
}
//