strList="
St Francis Catholic Primary School (0 miles)
Zoom on map | View full information
Our Lady of Sorrows Church (0 miles)
Zoom on map | View full information
St James The Great Catholic Primary School (0.5 miles)
Zoom on map | View full information
St James the Great Church (0.7 miles)
Zoom on map | View full information
St Thomas The Apostle Catholic College For Boys School (0.8 miles)
Zoom on map | View full information
St Gertrude Church (0.9 miles)
Zoom on map | View full information
St Thomas the Apostle Church (1 miles)
Zoom on map | View full information
";
function showResults()
{
document.getElementById("mapList").style.display="block";
}
var records = new Array(new Array('St Francis Catholic Primary School (38563-36667)',51.48003,-0.067077,'School'),new Array('Our Lady of Sorrows Church (61096-65625)',51.480132,-0.066165,'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 Thomas The Apostle Catholic College For Boys School (38573-36677)',51.470743,-0.056339,'School'),new Array('St Gertrude Church (61102-65628)',51.490414,-0.053889,'ParishChurch'),new Array('St Thomas the Apostle Church (61098-65626)',51.466597,-0.056314,'ParishChurch'),new Array('English Martyrs Catholic Primary School (38568-36672)',51.489796,-0.087378,'School'),new Array('Sacred Heart Church (60929-65538)',51.475561,-0.090865,'ParishChurch'),new Array('St Joseph`s Catholic Primary School (38565-36669)',51.495008,-0.053276,'School'),new Array('St Michael`s Catholic College (38570-36674)',51.499516,-0.067549,'School'),new Array('English Martyrs Church (61108-65631)',51.491281,-0.090211,'ParishChurch'),new Array('St Joseph`s Catholic Junior School (38569-36673)',51.479502,-0.099718,'School'),new Array('St Joseph`s Catholic Primary School (38560-36664)',51.499688,-0.069314,'School'),new Array('Kings College Hospital Chapel (65138-65538)',51.468357,-0.092306,'Other'),new Array('Sacred Heart Catholic Secondary School (38571-36675)',51.476224,-0.098847,'School'),new Array('St Peter and the Guardian Angels Church (61104-65629)',51.499772,-0.058591,'ParishChurch'),new Array('The Most Holy Trinity Church (60911-65529)',51.500392,-0.07218,'ParishChurch'),new Array('St Joseph`s Catholic Infant School (38559-36663)',51.479502,-0.099718,'School'),new Array('St Wilfrid Church (61110-65632)',51.48427,-0.099808,'ParishChurch'),new Array('The Assumption Church (60937-65543)',51.478245,-0.025792,'ParishChurch'),new Array('St Patrick`s RC Primary School (39075-37181)',51.503814,-0.060465,'School'),new Array('St Patrick Church (40836-38208)',51.503814,-0.060465,'ParishChurch'),new Array('Our Lady of the Immaculate Conception Church (61106-65630)',51.500025,-0.041852,'ParishChurch'),new Array('Our Lady of La Salette and St Joseph Church (60913-65530)',51.50259,-0.085027,'ParishChurch'),new Array('St John`s Catholic Primary School (38567-36671)',51.501006,-0.041407,'School'),new Array('St John`s RC Primary School (39061-37167)',51.500298,-0.041509,'School'),new Array('St Joseph`s Catholic Primary School (38541-36645)',51.478663,-0.023945,'School'),new Array('Sts Philip and James Church (61130-65642)',51.4612188,-0.098520199999939,'ParishChurch'),new Array('St Mary Magdalen Church (60927-65537)',51.458236,-0.038085,'ParishChurch'),new Array('St Joseph`s Catholic Primary School (38561-36665)',51.502767,-0.092569,'School'),new Array('St Mary Magdalen`s Catholic Primary School (38539-36643)',51.458236,-0.038085,'School'),new Array('Saint Joseph`s Catholic Primary School (39060-37166)',51.502615,-0.093167,'School'),new Array('St Edmund`s Catholic Primary School (38444-36548)',51.492166,-0.024226,'School'),new Array('Holy Redeemer Church (60967-65559)',51.480398,-0.11175,'ParishChurch'),new Array('St Edmund Church (40694-38137)',51.492166,-0.024226,'ParishChurch'),new Array('Precious Blood Church (60909-65528)',51.504178,-0.093634,'ParishChurch'),new Array('Our Lady of the Rosary Church (60965-65558)',51.478128,-0.112607,'ParishChurch'),new Array('St Anthony`s Catholic Primary School (38562-36666)',51.449682,-0.072115,'School'),new Array('Notre Dame Catholic Girls` Secondary School (38574-36678)',51.49698,-0.106138,'School'),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 Helen`s Catholic Primary School (38528-36632)',51.470288,-0.114321,'School'),new Array('The English Martyrs Church (40818-38199)',51.511326,-0.072108,'ParishChurch'),new Array('Archdiocese of Southwark (4804-884)',51.498109,-0.108684,'Other'),new Array('St Francesca Cabrini Catholic Primary School (38572-36676)',51.449531,-0.052116,'School'),new Array('English Martyrs Catholic Primary School School (38255-36359)',51.512763,-0.070909,'School'),new Array('St Helen`s RC Primary School (39058-37164)',51.46713,-0.114313,'School'),new Array('St Mary And St Michael Church (40510-38045)',51.512497,-0.052098,'ParishChurch'),new Array('St Anne`s Catholic Primary School (38532-36636)',51.485116,-0.118843,'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';
}
//