strList="
St Helen`s RC Primary School (0 miles)
Zoom on map | View full information
St Helen`s Catholic Primary School (0.2 miles)
Zoom on map | View full information
St Francis of Sales and St Gertrude Church (0.7 miles)
Zoom on map | View full information
Our Lady of the Rosary Church (0.8 miles)
Zoom on map | View full information
Sts Philip and James Church (0.8 miles)
Zoom on map | View full information
Corpus Christi Catholic Primary School (0.8 miles)
Zoom on map | View full information
Sacred Heart Catholic Secondary School (0.9 miles)
Zoom on map | View full information
";
function showResults()
{
document.getElementById("mapList").style.display="block";
}
var records = new Array(new Array('St Helen`s RC Primary School (39058-37164)',51.46713,-0.114313,'School'),new Array('St Helen`s Catholic Primary School (38528-36632)',51.470288,-0.114321,'School'),new Array('St Francis of Sales and St Gertrude Church (60959-65555)',51.473494,-0.128134,'ParishChurch'),new Array('Our Lady of the Rosary Church (60965-65558)',51.478128,-0.112607,'ParishChurch'),new Array('Sts Philip and James Church (61130-65642)',51.4612188,-0.098520199999939,'ParishChurch'),new Array('Corpus Christi Catholic Primary School (38529-36633)',51.456164,-0.121343,'School'),new Array('Sacred Heart Catholic Secondary School (38571-36675)',51.476224,-0.098847,'School'),new Array('Holy Redeemer Church (60967-65559)',51.480398,-0.11175,'ParishChurch'),new Array('Kings College Hospital Chapel (65138-65538)',51.468357,-0.092306,'Other'),new Array('St Mary`s Catholic Primary School (38530-36634)',51.45934,-0.137767,'School'),new Array('St Joseph`s Catholic Infant School (38559-36663)',51.479502,-0.099718,'School'),new Array('St Mary`s (60961-65556)',51.461412,-0.137467,'ParishChurch'),new Array('St Joseph`s Catholic Junior School (38569-36673)',51.479502,-0.099718,'School'),new Array('Sacred Heart Church (60929-65538)',51.475561,-0.090865,'ParishChurch'),new Array('St Anne Church (60949-65550)',51.486196,-0.119418,'ParishChurch'),new Array('St Wilfrid Church (61110-65632)',51.48427,-0.099808,'ParishChurch'),new Array('St Anne`s Catholic Primary School (38532-36636)',51.485116,-0.118843,'School'),new Array('St Mary`s Catholic Primary School (38583-36687)',51.476883,-0.146212,'School'),new Array('Corpus Christi Church (60957-65554)',51.446797,-0.123815,'ParishChurch'),new Array('Our Lady of Mount Carmel and St Joseph Church (60963-65557)',51.4775636,-0.147081,'ParishChurch'),new Array('Westminster Cathedral Catholic Primary School School (38448-36552)',51.488031,-0.131874,'School'),new Array('St Bernadette Catholic Junior School (38533-36637)',51.447729,-0.142802,'School'),new Array('La Retraite High For Girls School (38534-36638)',51.447729,-0.142802,'School'),new Array('St Bede`s Catholic Infant School (38527-36631)',51.444947,-0.135201,'School'),new Array('St Bede Church (60974-65563)',51.444947,-0.135201,'ParishChurch'),new Array('St James The Great Catholic Primary School (38564-36668)',51.474356,-0.073105,'School'),new Array('St James the Great Church (61100-65627)',51.470008,-0.072295,'ParishChurch'),new Array('St Francis Xavier Catholic Sixth Form College School (38591-36695)',51.451159,-0.149269,'School'),new Array('Holy Apostles Church (40730-38155)',51.488238,-0.143187,'ParishChurch'),new Array('English Martyrs Catholic Primary School (38568-36672)',51.489796,-0.087378,'School'),new Array('English Martyrs Church (61108-65631)',51.491281,-0.090211,'ParishChurch'),new Array('Sts Simon and Jude Church (60955-65553)',51.438087,-0.116172,'ParishChurch'),new Array('St Vincent De Paul Catholic Primary School School (38329-36433)',51.495342,-0.127325,'School'),new Array('St Thomas` Hospital (65137-65531)',51.497908,-0.119671,'Other'),new Array('Notre Dame Catholic Girls` Secondary School (38574-36678)',51.49698,-0.106138,'School'),new Array('Bishops` Conference of England and Wales (6983-6473)',51.491033,-0.144817,'Other'),new Array(' (71012-74877)',51.4910334,-0.144816600000013,'Other'),new Array('St Vincent de Paul Church (60969-65560)',51.461983,-0.162219,'ParishChurch'),new Array('Metropolitan Cathedral of St George (60915-65531)',51.497878,-0.109976,'Cathedral'),new Array('Westminster Cathedral (4137-23)',51.495076,-0.138861,'Cathedral'),new Array('St George`s Cathedral Catholic Primary School (38566-36670)',51.498068,-0.107288,'School'),new Array('St Thomas More Church (61126-65640)',51.448155,-0.073878,'ParishChurch'),new Array('St Anthony`s Catholic Primary School (38562-36666)',51.449682,-0.072115,'School'),new Array('Holy Ghost Catholic Primary School (38582-36686)',51.44788,-0.156352,'School'),new Array('Archdiocese of Westminster (4786-866)',51.495156,-0.1388,'Other'),new Array('Church of the Holy Ghost Church (60976-65564)',51.448472,-0.156789,'ParishChurch'),new Array('St Francis Catholic Primary School (38563-36667)',51.48003,-0.067077,'School'),new Array('St Anselm Church (61146-65650)',51.445486,-0.150477,'ParishChurch'),new Array('Archdiocese of Southwark (4804-884)',51.498109,-0.108684,'Other'),new Array('Vaughan House (324-866)',51.496429,-0.137437,'Other'));
// 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';
}
//