strList="
Holy Cross (0 miles)
Zoom on map | View full information
Holy Cross Church (0 miles)
Zoom on map | View full information
St Mark`s West Essex Catholic School (0.9 miles)
Zoom on map | View full information
St Luke`s (1.4 miles)
Zoom on map | View full information
Our Lady Of Fatima Church (1.5 miles)
Zoom on map | View full information
St Alban`s (1.5 miles)
Zoom on map | View full information
St Thomas More Church (1.9 miles)
Zoom on map | View full information
";
function showResults()
{
document.getElementById("mapList").style.display="block";
}
var records = new Array(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 Mark`s West Essex Catholic School (36502-34601)',51.764472,0.103522,'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('St Thomas More Church (39328-37405)',51.775207,0.087975,'ParishChurch'),new Array('The Assumption Church (39322-37407)',51.783819,0.13964,'ParishChurch'),new Array('The Immaculate Conception Church (39298-37387)',51.70328,0.115923,'ParishChurch'),new Array('St Giles C Of E Church (39466-37471)',51.735601,0.010836,'ParishChurch'),new Array('St Elizabeth School School (38383-36487)',51.830298,0.089303,'School'),new Array('St Augustine`s Catholic Primary School (38376-36480)',51.757174,-0.009259,'School'),new Array('St Augustine Church (40628-38104)',51.758098,-0.010175,'ParishChurch'),new Array('St Cross Catholic Primary School (38377-36481)',51.753834,-0.01326,'School'),new Array('St Helen Church (39380-37441)',51.703137,0.244711,'ParishChurch'),new Array('Most Holy Redeemer Church (40760-38170)',51.847578,0.072709,'ParishChurch'),new Array('St Thomas More And St Edward Church (39432-37471)',51.686271,0.006465,'ParishChurch'),new Array('St Andrew`s and Holy Cross Shared Church (40698-38139)',51.856608,0.074634,'ParishChurch'),new Array('St John Fisher (36501-34600)',51.654437,0.084992,'School'),new Array('Sacred Heart Of Jesus And St Joseph Church (40838-38209)',51.81236,-0.026355,'ParishChurch'),new Array('Sacred Heart Catholic Primary School (38374-36478)',51.808683,-0.032812,'School'),new Array('St Joseph`s Catholic Primary School (38380-36484)',51.867714,0.149255,'School'),new Array('St Paul`s Church (40880-38230)',51.707471,-0.0412,'ParishChurch'),new Array('St Joseph`s Catholic Primary School (38379-36483)',51.691528,-0.02784,'School'),new Array('St Edmund of Canterbury Church (39370-37434)',51.648837,0.060378,'ParishChurch'),new Array('St Paul`s Catholic Primary School (38375-36479)',51.715572,-0.051418,'School'),new Array('St Joseph And The English Martyrs Church (40466-38023)',51.870572,0.155696,'ParishChurch'),new Array('St Mary`s Catholic Bishop`s Stortford School (38384-36488)',51.870439,0.153656,'School'),new Array('Our Lady Of The Immaculate Conception And St Joseph Church (40834-38207)',51.689148,-0.032848,'ParishChurch'),new Array('The Immaculate Conception And St Joseph Church (40616-38098)',51.798954,-0.074148,'ParishChurch'),new Array('St Ignatius College School (38345-36449)',51.672939,-0.055751,'School'),new Array('Loyola Preparatory School (36497-34596)',51.627325,0.036791,'School'),new Array('St Joseph`s Catholic Primary School (38378-36482)',51.802225,-0.094997,'School'),new Array('St Mary`s (36574-34673)',51.631162,0.003483,'School'),new Array('St Edmund College School (38382-36486)',51.880358,-0.00866,'School'),new Array('Our Lady Of Grace And St Teresa Of Avila Church (39256-37354)',51.62841,0.004055,'ParishChurch'),new Array('St. Mary`s Catholic Primary Enfield School (38342-36446)',51.648248,-0.04017,'School'),new Array('Church Of Mary Mother Of God Church (40740-38160)',51.647539,-0.039766,'ParishChurch'),new Array('St Thomas Of Canterbury Catholic Primary School School (38381-36485)',51.889282,0.010641,'School'),new Array('St Edmund Of Canterbury and English Martyrs Church (40716-38148)',51.889945,0.011848,'ParishChurch'),new Array('The Assumption Church (39316-37403)',51.60776,0.104416,'ParishChurch'),new Array('St John`s RC Special School (38831-36937)',51.609207,0.064476,'School'),new Array('St John`s School (36503-34602)',51.608495,0.064025,'School'),new Array('Trinity Catholic High School (36573-34672)',51.616662,0.021074,'School'),new Array('St Antony`s (36570-34669)',51.616169,0.024071,'School'),new Array('St Thomas Of Canterbury Church (39448-37488)',51.616091,0.024963,'ParishChurch'),new Array('St Martin De Porres Church (40520-38050)',51.707776,-0.114802,'ParishChurch'),new Array('St Theresa Of Lisieux Church (39412-37458)',51.908838,0.200739,'ParishChurch'),new Array('St. George`s Catholic Primary Enfield School (38341-36445)',51.659886,-0.081178,'School'),new Array('St Patrick`s (36543-34642)',51.59704,0.158918,'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';
}
//