strList="
St Hugh of Lincoln (0 miles)
Zoom on map | View full information
St Hugh Of Lincoln Catholic Primary School (0.5 miles)
Zoom on map | View full information
Scalabrini Community House (2.7 miles)
Zoom on map | View full information
Scalabrini Community House (2.7 miles)
Zoom on map | View full information
St John The Baptist School (2.8 miles)
Zoom on map | View full information
St. Dunstan`s School (2.9 miles)
Zoom on map | View full information
Parish Office (3 miles)
Zoom on map | View full information
";
function showResults()
{
document.getElementById("mapList").style.display="block";
}
var records = new Array(new Array('St Hugh of Lincoln (65962-70937)',51.318119,-0.61295,'Church'),new Array('St Hugh Of Lincoln Catholic Primary School (38772-36878)',51.311445,-0.60978,'School'),new Array('Scalabrini Community House (71057-75306)',51.3186921,-0.5515208,'Other'),new Array('Scalabrini Community House (71057-75200)',51.3186921,-0.5515208,'Other'),new Array('St John The Baptist School (38780-36886)',51.308073,-0.549725,'School'),new Array('St. Dunstan`s School (33305-33041)',51.319903,-0.54651,'School'),new Array('Parish Office (34960-33781)',51.3187423,-0.543547799999942,'Other'),new Array('St Dunstan (34959-33781)',51.3187423,-0.543547799999942,'ParishChurch'),new Array('St Edward the Confessor (34935-33714)',51.271682,-0.5562921,'Church'),new Array('St Edward the Confessor (34935-33769)',51.271682,-0.5562921,'Church'),new Array('Christ the King (65973-33694)',51.360483,-0.687222,'Church'),new Array('The Marist School (33303-33039)',51.335321,-0.509,'School'),new Array('Rydes Hill Preparatory And Nursery School (38782-36888)',51.251536,-0.602115,'School'),new Array('St Joseph`s Catholic Primary School (38767-36873)',51.251192,-0.601108,'School'),new Array('Our Lady Help of Christians (34949-33776)',51.338026,-0.505984,'ParishChurch'),new Array('St. Augustine`s School (33286-33022)',51.320772,-0.723687,'School'),new Array('St Peter andamp; St John (35004-33822)',51.347441,-0.723549,'Church'),new Array('St Peter and St John (65974-33694)',51.347441,-0.723549,'Church'),new Array('St Peter andamp; St John (36483-34582)',51.347441,-0.723549,'Church'),new Array('The Sacred Heart (34933-33768)',51.396255,-0.620737,'ParishChurch'),new Array('Verona Fathers Community House (71059-75308)',51.39618540000001,-0.6212213,'Other'),new Array('St Mary (34915-33759)',51.2461619,-0.5550501,'Church'),new Array('Our Lady Queen of Heaven (34817-33710)',51.316002,-0.74243,'ParishChurch'),new Array('St Mary (34915-33714)',51.2461619,-0.5550501,'Church'),new Array('The Holy Family Catholic Primary School (38769-36875)',51.366187,-0.505067,'School'),new Array('The Holy Family (34745-33674)',51.36618679999999,-0.505067300000064,'ParishChurch'),new Array('St Mary`s Independent Senior School (1163-10260)',51.393673,-0.67049,'School'),new Array('St Joseph (34825-33714)',51.238608,-0.568126,'ParishChurch'),new Array('St Thomas Of Canterbury School (38779-36885)',51.244128,-0.541808,'School'),new Array('Salesian School (38781-36887)',51.381781,-0.518656,'School'),new Array('St Pius X (34871-33737)',51.2443555,-0.539107400000034,'Church'),new Array('St Patrick`s Primary School (1119-10216)',51.292563,-0.746154,'School'),new Array('St Pius X (34871-33714)',51.2443555,-0.539107400000034,'Church'),new Array('St Francis of Assisi (807-9866)',51.397292,-0.673174,'ParishChurch'),new Array('St Francis Primary School (1158-10255)',51.397292,-0.673174,'School'),new Array('St Francis of Assisi (807-9778)',51.397292,-0.673174,'ParishChurch'),new Array('Marist Senior School (1161-10258)',51.403575,-0.650938,'School'),new Array('Forces of England and Wales (9669-10649)',51.290376,-0.747633,'Other'),new Array('Farnborough Hill Senior School (1177-10274)',51.30065,-0.750667,'School'),new Array('St Tarcisius War Memorial Church (65975-33694)',51.3386,-0.75011,'Church'),new Array('St Tarcisius (36482-34581)',51.3386,-0.75011,'Church'),new Array('Greccio Convent (71074-75062)',51.2348258,-0.5652896,'Other'),new Array('Firfield House (71075-75063)',51.3726615,-0.5005986,'Other'),new Array('Firfield House (71075-75418)',51.3726615,-0.5005986,'Other'),new Array('Salesian College (1159-10256)',51.279997,-0.743313,'School'),new Array('Our Lady Help of Christians (871-9803)',51.279032,-0.743841,'ParishChurch'),new Array('Our Lady and St Dominic (873-9804)',51.294862,-0.761897,'ParishChurch'),new Array('Salesian Community House (71115-75304)',51.386087,-0.5045263,'Other'),new Array('St Bernadette`s Primary School (1120-10217)',51.300481,-0.762707,'School'),new Array('The Holy Angels (34751-33677)',51.248423,-0.718226,'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';
}
//