strList="
St Helen Church (0 miles)
Zoom on map | View full information
St Margaret Of Scotland Church (5.3 miles)
Zoom on map | View full information
The Immaculate Conception Church (5.5 miles)
Zoom on map | View full information
Brentwood Diocese (5.7 miles)
Zoom on map | View full information
St Helen`s Catholic Junior School (5.7 miles)
Zoom on map | View full information
St Helen`s Junior School (5.8 miles)
Zoom on map | View full information
St John The Evangelist And St Erconwald Church (6.1 miles)
Zoom on map | View full information
";
function showResults()
{
document.getElementById("mapList").style.display="block";
}
var records = new Array(new Array('St Helen Church (39380-37441)',51.703137,0.244711,'ParishChurch'),new Array('St Margaret Of Scotland Church (39288-37380)',51.634936,0.299538,'ParishChurch'),new Array('The Immaculate Conception Church (39298-37387)',51.70328,0.115923,'ParishChurch'),new Array('Brentwood Diocese (71011-867)',51.6286785,0.303570499999978,'Other'),new Array('St Helen`s Catholic Junior School (38828-36934)',51.628678,0.30357,'School'),new Array('St Helen`s Junior School (36504-34603)',51.627072,0.303402,'School'),new Array('St John The Evangelist And St Erconwald Church (39354-37425)',51.663098,0.371589,'ParishChurch'),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('Holy Cross (36499-34598)',51.757072,0.120972,'School'),new Array('Holy Cross Church (39324-37408)',51.757072,0.120972,'ParishChurch'),new Array('St Joseph the Worker (36507-34606)',51.632329,0.344911,'School'),new Array('St Joseph The Worker Church (39346-37419)',51.632329,0.344911,'ParishChurch'),new Array('Holy Cross And All Saints Church (39440-37480)',51.611762,0.299045,'ParishChurch'),new Array('Most Holy Redeemer Church (39330-37411)',51.605585,0.232371,'ParishChurch'),new Array('St Dominic Church (39332-37412)',51.604153,0.209166,'ParishChurch'),new Array('St Ursula`s Junior School (36546-34645)',51.604153,0.209166,'School'),new Array('St Ursula`s Infant School (36547-34646)',51.604153,0.209166,'School'),new Array('The Assumption Church (39322-37407)',51.783819,0.13964,'ParishChurch'),new Array('Ursuline Preparatory School (36506-34605)',51.600231,0.288527,'School'),new Array('St Mark`s West Essex Catholic School (36502-34601)',51.764472,0.103522,'School'),new Array('Marillac Hospital Chapel (39472-37502)',51.600301,0.302885,'Other'),new Array('St John Fisher (36501-34600)',51.654437,0.084992,'School'),new Array('St Luke`s (36500-34599)',51.757746,0.088343,'School'),new Array('Our Lady Of Fatima Church (39320-37405)',51.777191,0.11084,'ParishChurch'),new Array('St Alban`s (36498-34597)',51.776814,0.109257,'School'),new Array('Corpus Christi Church (39274-37370)',51.59704,0.158918,'ParishChurch'),new Array('St Patrick`s (36543-34642)',51.59704,0.158918,'School'),new Array('St Mary`s Hare Park (Independent Preparatory) School (36545-34644)',51.584689,0.208885,'School'),new Array('St Thomas More Church (39328-37405)',51.775207,0.087975,'ParishChurch'),new Array('The Campion School (36552-34651)',51.579934,0.233452,'School'),new Array('Christ The Eternal High Priest Church (39304-37394)',51.579931,0.208929,'ParishChurch'),new Array('St Peter`s (36550-34649)',51.584713,0.17876,'School'),new Array('St Edmund of Canterbury Church (39370-37434)',51.648837,0.060378,'ParishChurch'),new Array('Our Lady And St Joseph Church (39416-37460)',51.660894,0.437513,'ParishChurch'),new Array('The Assumption Church (39316-37403)',51.60776,0.104416,'ParishChurch'),new Array('St Edward The Confessor Church (39390-37446)',51.581077,0.18231,'ParishChurch'),new Array('St Peter`s Catholic Centre (39452-37468)',51.573221,0.269289,'Church'),new Array('The Blessed Sacrament Church (39250-37349)',51.748332,0.444493,'ParishChurch'),new Array('The Most Holy Redeemer Church (39230-37333)',51.620919,0.416646,'ParishChurch'),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('St Mary Mother Of God Church (39342-37417)',51.564956,0.195621,'ParishChurch'),new Array('St Pius X (36510-34609)',51.74972,0.460708,'School'),new Array('St Mary`s (36548-34647)',51.564701,0.196272,'School'),new Array('St John Payne Comprehensive School (36516-34615)',51.75248,0.460757,'School'),new Array('Saint John Payne Rc School (38827-36933)',51.751847,0.463041,'School'),new Array('The Holy Name Church (39254-37347)',51.716185,0.476507,'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';
}
//