strList="
St Joseph`s Primary School (0 miles)
Zoom on map | View full information
St Margaret Clitherow Primary School (2 miles)
Zoom on map | View full information
St Francis of Assisi (3.1 miles)
Zoom on map | View full information
St Francis of Assisi (3.1 miles)
Zoom on map | View full information
St Francis Primary School (3.1 miles)
Zoom on map | View full information
St Mary`s Independent Senior School (3.3 miles)
Zoom on map | View full information
Corpus Christi (3.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 Primary School (1136-10233)',51.414375,-0.740639,'School'),new Array('St Margaret Clitherow Primary School (1137-10234)',51.390755,-0.765362,'School'),new Array('St Francis of Assisi (807-9866)',51.397292,-0.673174,'ParishChurch'),new Array('St Francis of Assisi (807-9778)',51.397292,-0.673174,'ParishChurch'),new Array('St Francis Primary School (1158-10255)',51.397292,-0.673174,'School'),new Array('St Mary`s Independent Senior School (1163-10260)',51.393673,-0.67049,'School'),new Array('Corpus Christi (1025-9867)',51.408584,-0.829094,'ParishChurch'),new Array('St Teresa`s Primary School (1146-10243)',51.409356,-0.82814,'School'),new Array('Our Lady`s Independent Preparatory School (1180-10277)',51.374727,-0.802243,'School'),new Array('Marist Senior School (1161-10258)',51.403575,-0.650938,'School'),new Array('Holy Ghost (849-9797)',51.37164,-0.803717,'Church'),new Array('Christ the King (65973-33694)',51.360483,-0.687222,'Church'),new Array('St Peter and St John (65974-33694)',51.347441,-0.723549,'Church'),new Array('St Peter andamp; St John (35004-33822)',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 Tarcisius War Memorial Church (65975-33694)',51.3386,-0.75011,'Church'),new Array('St Tarcisius (36482-34581)',51.3386,-0.75011,'Church'),new Array('The Immaculate Conception (1016-9797)',51.345889,-0.798702,'ParishChurch'),new Array('St Mark (1083-9866)',51.477555,-0.646424,'ParishChurch'),new Array('Thames Hospice Care (71463-76368)',51.4731173,-0.6326871,'Other'),new Array('Our Lady of Peace (1062-9861)',51.480483,-0.839043,'ParishChurch'),new Array('St. Augustine`s School (33286-33022)',51.320772,-0.723687,'School'),new Array('St Swithun (1089-9871)',51.339629,-0.834154,'ParishChurch'),new Array('St Edwards Royal Free Ecumenical Middle School (1155-10252)',51.48116,-0.628532,'School'),new Array('St Edward`s First School (1156-10253)',51.48116,-0.628532,'School'),new Array('Our Lady Queen of Heaven (34817-33710)',51.316002,-0.74243,'ParishChurch'),new Array('Parish Office (66493-9827)',51.51583,-0.752342,'Other'),new Array('St Edward (1079-9866)',51.47975,-0.615642,'ParishChurch'),new Array('The Brigidine School (1164-10261)',51.471484,-0.60793,'School'),new Array('St Edmund Campion (938-9827)',51.51583,-0.752342,'ParishChurch'),new Array('St Thomas More (1060-9861)',51.480089,-0.863078,'ParishChurch'),new Array('St Edmund Campion Primary School (1139-10236)',51.516722,-0.753283,'School'),new Array('St John`s Convent (71415-76438)',51.5026616,-0.8302248,'Other'),new Array('St Cuthbert`s Catholic Primary School (38768-36874)',51.424604,-0.573886,'School'),new Array('Parish Office and Jurgens Centre (33888-34577)',51.4294246,-0.5673902,'Other'),new Array('London Royal Holloway University (70999-34577)',51.4294246,-0.5673902,'Other'),new Array('Royal Holloway University Chaplaincy (70994-74294)',51.4293203,-0.567610800000011,'Other'),new Array('The Assumption of Our Lady (34803-70928)',51.42932,-0.567611,'ParishChurch'),new Array('The Assumption of Our Lady (36478-34577)',51.42932,-0.567611,'Church'),new Array('St John`s Beaumont Preparatory School (38736-36845)',51.446726,-0.573283,'School'),new Array('Our Lady Of Sorrows Catholic Church (49525-55999)',51.487548,-0.609717,'ParishChurch'),new Array('Farnborough Hill Senior School (1177-10274)',51.30065,-0.750667,'School'),new Array('St Joseph (940-9828)',51.528178,-0.721616,'ParishChurch'),new Array('St Bernadette`s Primary School (1120-10217)',51.300481,-0.762707,'School'),new Array('St John Bosco (1026-9868)',51.459026,-0.908079,'ParishChurch'),new Array('St Mary`s Primary School (1138-10235)',51.528178,-0.721616,'School'),new Array('St Dominic Savio Primary School (1147-10244)',51.459026,-0.908079,'School'),new Array('Our Lady and St Dominic (873-9804)',51.294862,-0.761897,'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';
}
//