strList="
St Joseph`s Catholic Primary School (0 miles)
Zoom on map | View full information
Saint Joseph`s Catholic Primary School (0 miles)
Zoom on map | View full information
Precious Blood Church (0.1 miles)
Zoom on map | View full information
Our Lady of La Salette and St Joseph Church (0.3 miles)
Zoom on map | View full information
St George`s Cathedral Catholic Primary School (0.7 miles)
Zoom on map | View full information
Notre Dame Catholic Girls` Secondary School (0.7 miles)
Zoom on map | View full information
English Martyrs Church (0.8 miles)
Zoom on map | View full information
";
function showResults()
{
document.getElementById("mapList").style.display="block";
}
var records = new Array(new Array('St Joseph`s Catholic Primary School (38561-36665)',51.502767,-0.092569,'School'),new Array('Saint Joseph`s Catholic Primary School (39060-37166)',51.502615,-0.093167,'School'),new Array('Precious Blood Church (60909-65528)',51.504178,-0.093634,'ParishChurch'),new Array('Our Lady of La Salette and St Joseph Church (60913-65530)',51.50259,-0.085027,'ParishChurch'),new Array('St George`s Cathedral Catholic Primary School (38566-36670)',51.498068,-0.107288,'School'),new Array('Notre Dame Catholic Girls` Secondary School (38574-36678)',51.49698,-0.106138,'School'),new Array('English Martyrs Church (61108-65631)',51.491281,-0.090211,'ParishChurch'),new Array('Metropolitan Cathedral of St George (60915-65531)',51.497878,-0.109976,'Cathedral'),new Array('Archdiocese of Southwark (4804-884)',51.498109,-0.108684,'Other'),new Array('St Patrick Church (60917-65532)',51.504504,-0.110465,'ParishChurch'),new Array('English Martyrs Catholic Primary School (38568-36672)',51.489796,-0.087378,'School'),new Array('The Most Holy Trinity Church (60911-65529)',51.500392,-0.07218,'ParishChurch'),new Array('10 Aldersgate Street (71179-74880)',51.5170306,-0.0964158,'Other'),new Array('St Joseph`s Catholic Primary School (38560-36664)',51.499688,-0.069314,'School'),new Array('St Mary Moorfields Church (40696-38138)',51.518767,-0.085544,'ParishChurch'),new Array('St Michael`s Catholic College (38570-36674)',51.499516,-0.067549,'School'),new Array('The English Martyrs Church (40818-38199)',51.511326,-0.072108,'ParishChurch'),new Array('St Etheldreda Church (40532-38056)',51.518346,-0.107284,'ParishChurch'),new Array('English Martyrs Catholic Primary School School (38255-36359)',51.512763,-0.070909,'School'),new Array('St Thomas` Hospital (65137-65531)',51.497908,-0.119671,'Other'),new Array('St Wilfrid Church (61110-65632)',51.48427,-0.099808,'ParishChurch'),new Array('St Joseph`s Church (40480-38030)',51.521984,-0.091493,'ParishChurch'),new Array('St Patrick`s RC Primary School (39075-37181)',51.503814,-0.060465,'School'),new Array('St Boniface Church (40556-38068)',51.516233,-0.067534,'ParishChurch'),new Array('Corpus Christi Church (40682-38131)',51.510929,-0.122449,'ParishChurch'),new Array('St Patrick Church (40836-38208)',51.503814,-0.060465,'ParishChurch'),new Array('St Peter Church (40642-38111)',51.522279,-0.109715,'ParishChurch'),new Array('St Peter and the Guardian Angels Church (61104-65629)',51.499772,-0.058591,'ParishChurch'),new Array('St Anselm And St Cecilia Church (40674-38127)',51.516772,-0.118952,'ParishChurch'),new Array('St Joseph`s Catholic Primary Macklin Street School (38322-36426)',51.516189,-0.121873,'School'),new Array('St. Peter and St. Paul Catholic Primary School (38424-36528)',51.524834,-0.100873,'School'),new Array('St Vincent De Paul Catholic Primary School School (38329-36433)',51.495342,-0.127325,'School'),new Array('St Joseph`s Catholic Infant School (38559-36663)',51.479502,-0.099718,'School'),new Array('Catholic Education Service School (39110-37216)',51.503109,-0.130618,'School'),new Array('St Joseph`s Catholic Junior School (38569-36673)',51.479502,-0.099718,'School'),new Array('St Anne Church (60949-65550)',51.486196,-0.119418,'ParishChurch'),new Array('St Anne`s Catholic Primary School (38443-36547)',51.52114,-0.066836,'School'),new Array('St Anne`s Catholic Primary School (38532-36636)',51.485116,-0.118843,'School'),new Array('St Anne`s Church Church (40826-38203)',51.52114,-0.066836,'ParishChurch'),new Array('Notre Dame De France Church (40546-38063)',51.511339,-0.130099,'ParishChurch'),new Array('Holy Redeemer Church (60967-65559)',51.480398,-0.11175,'ParishChurch'),new Array('St Monica`s Catholic Primary Hackney School (38347-36451)',51.528303,-0.081901,'School'),new Array('St Joseph`s Catholic Primary School (38565-36669)',51.495008,-0.053276,'School'),new Array('St Monica`s Priory Church (40636-38108)',51.528303,-0.081901,'ParishChurch'),new Array('Ss Peter And Paul Church (40506-38043)',51.527113,-0.108895,'ParishChurch'),new Array('St Patrick Church (40768-38174)',51.515361,-0.131405,'ParishChurch'),new Array('St. Mary and St. Michael Catholic Primary School School (38445-36549)',51.513707,-0.052925,'School'),new Array('Bishop Challoner RC Girls School (39077-37183)',51.512745,-0.050257,'School'),new Array('St Francis Catholic Primary School (38563-36667)',51.48003,-0.067077,'School'),new Array('Sacred Heart Church (60929-65538)',51.475561,-0.090865,'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';
}
//