strList="
The Sacred Heart (0 miles)
Zoom on map | View full information
Parish Office (0.1 miles)
Zoom on map | View full information
Notre Dame School (1 miles)
Zoom on map | View full information
Notre Dame Preparatory School (1 miles)
Zoom on map | View full information
All Saints (2.6 miles)
Zoom on map | View full information
All Saints (2.6 miles)
Zoom on map | View full information
Cardinal Newman Catholic Primary School (3.3 miles)
Zoom on map | View full information
";
function showResults()
{
document.getElementById("mapList").style.display="block";
}
var records = new Array(new Array('The Sacred Heart (65939-70913)',51.32952,-0.413793,'ParishChurch'),new Array('Parish Office (71051-70913)',51.3291729,-0.4122377,'Other'),new Array('Notre Dame School (38743-36839)',51.342216,-0.424353,'School'),new Array('Notre Dame Preparatory School (71054-36840)',51.3416588,-0.4251921,'School'),new Array('All Saints (34843-33723)',51.366174,-0.400575,'ParishChurch'),new Array('All Saints (34843-33741)',51.366174,-0.400575,'ParishChurch'),new Array('Cardinal Newman Catholic Primary School (38774-36880)',51.375153,-0.393681,'School'),new Array('The Holy Name (34807-33705)',51.362942,-0.356115,'ParishChurch'),new Array('Parish Office (71225-33705)',51.36319289999999,-0.3553175,'Other'),new Array('St George`s College Junior School (38738-36847)',51.377098,-0.454077,'School'),new Array('Christ the Prince of Peace (34955-33779)',51.374222,-0.460323,'ParishChurch'),new Array('St Charles Borromeo School (33304-33040)',51.374222,-0.460323,'School'),new Array('The Holy Spirit (6243-70927)',51.2902993,-0.3567733,'Church'),new Array('The Holy Spirit (34813-33708)',51.290327,-0.356128,'ParishChurch'),new Array('Our Lady of Sorrows (65953-70927)',51.276259,-0.3963392,'ParishChurch'),new Array('St Erconwald (34947-75588)',51.386142,-0.413474,'ParishChurch'),new Array('Community House (71348-75405)',51.3859416,-0.4167925,'Other'),new Array('Our Lady Help of Christians (34949-33776)',51.338026,-0.505984,'ParishChurch'),new Array('The Marist School (33303-33039)',51.335321,-0.509,'School'),new Array('St George`s College (38741-36843)',51.377702,-0.478900199999998,'School'),new Array('St George`s College (65930-75295)',51.377702,-0.4789,'School'),new Array('Our Lady and St Peter (34859-33731)',51.299803,-0.324259,'ParishChurch'),new Array('St. Peter`s School (33299-33035)',51.302678,-0.317785,'School'),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('Firfield House (71075-75418)',51.3726615,-0.5005986,'Other'),new Array('Firfield House (71075-75063)',51.3726615,-0.5005986,'Other'),new Array('St Catherine of Siena Church (61236-65697)',51.359779,-0.310811,'ParishChurch'),new Array('Our Lady of Lourdes (34941-33772)',51.388704,-0.347071,'ParishChurch'),new Array('St. Paul`s School (33302-33038)',51.388704,-0.347071,'School'),new Array('Cranmore Preparatory School (38745-36856)',51.261062,-0.450864,'School'),new Array('St Michael (34753-33678)',51.31254,-0.300809,'ParishChurch'),new Array('House of Prayer (71082-75069)',51.3992432,-0.3601896,'Other'),new Array('St Alban`s Catholic Primary School (38775-36881)',51.399027,-0.362469,'School'),new Array('St John Fisher Church (40766-38173)',51.402281,-0.46056,'ParishChurch'),new Array('Community House (71058-75307)',51.398594,-0.3579745,'Other'),new Array('St Anne (34789-33696)',51.38568619999999,-0.502399,'ParishChurch'),new Array('St Anne`s Catholic Primary School (38776-36882)',51.3875,-0.500938,'School'),new Array('Salesian Community House (71115-75304)',51.386087,-0.5045263,'Other'),new Array('St Theresa`s School (38744-36851)',51.247967,-0.39922,'School'),new Array('St Barnabas (34879-33741)',51.403466,-0.357724,'ParishChurch'),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 Teresa`s Preparatory School (38783-36889)',51.247967,-0.39922,'School'),new Array('St. Dunstan`s School (33305-33041)',51.319903,-0.54651,'School'),new Array('Salesian School (38781-36887)',51.381781,-0.518656,'School'),new Array('St Ignatius Catholic Primary School (38440-36544)',51.414792,-0.417487,'School'),new Array('St Ignatius Of Loyola Church (40808-38194)',51.415351,-0.418963,'ParishChurch'),new Array('St Paul`s Catholic College School (38441-36545)',51.415603,-0.415618,'School'),new Array('St Joseph (34805-33704)',51.329562,-0.274228,'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';
}
//