strList="
Hellesdon Hospital (0 miles)
Zoom on map | View full information
Pineheath Hospital (0 miles)
Zoom on map | View full information
St Therese of Lisieux Parish Church (0 miles)
Zoom on map | View full information
St Mary of the Isle Presbytery (0 miles)
Zoom on map | View full information
Society of Saint Gregory (0 miles)
Zoom on map | View full information
Kingfisher House (0 miles)
Zoom on map | View full information
S t Paul`s & The Good Shepherd Church (0 miles)
Zoom on map | View full information
";
function showResults()
{
document.getElementById("mapList").style.display="block";
}
var records = new Array(new Array('Hellesdon Hospital (36966-35066)',37.778093,-122.255116,'Other'),new Array('Pineheath Hospital (36974-35074)',37.778093,-122.255116,'Other'),new Array('St Therese of Lisieux Parish Church (30631-31530)',37.778093,-122.255116,'ParishChurch'),new Array('St Mary of the Isle Presbytery (53044-57811)',37.778093,-122.255116,'Other'),new Array('Society of Saint Gregory (5005-1393)',37.778093,-122.255116,'Other'),new Array('Kingfisher House (36963-35063)',37.778093,-122.255116,'School'),new Array('S t Paul`s and The Good Shepherd Church (63401-66785)',37.778093,-122.255116,'Other'),new Array('McAuley Catholic High School (65171-48424)',37.778093,-122.255116,'School'),new Array('St Teresa of Avila Parish House (52922-57750)',37.778093,-122.255116,'Other'),new Array(' (52846-57712)',37.778093,-122.255116,'Other'),new Array('Sandringham Hospital (36959-35059)',37.778093,-122.255116,'Other'),new Array('Sacred Heart (65202-48574)',37.778093,-122.255116,'School'),new Array('HMP Whitemoor (36985-35085)',37.778093,-122.255116,'Other'),new Array('St. Michael`s Hospital (36965-35065)',37.778093,-122.255116,'Other'),new Array('St Joseph`s Presbytery (52852-77223)',37.778093,-122.255116,'Other'),new Array('St Joseph`s Presbytery (52852-57715)',37.778093,-122.255116,'Other'),new Array('St Anne`s Parish Centre (52928-57753)',37.778093,-122.255116,'Other'),new Array('Roche Abbey (parish Of Maltby) Church (44733-70878)',37.778093,-122.255116,'ParishChurch'),new Array('HMP Norwich and YOI (36980-35080)',37.778093,-122.255116,'Other'),new Array('The Presbytery (52904-57741)',37.778093,-122.255116,'Other'),new Array('HMP Littlehey (36986-35086)',37.778093,-122.255116,'Other'),new Array('Southwold Cottage Hospital (36975-35075)',37.778093,-122.255116,'Other'),new Array('HMP Blundeston (36984-35084)',37.778093,-122.255116,'Other'),new Array('St Mary of the Isle Presbytery (53044-77168)',37.778093,-122.255116,'Other'),new Array('St Bede`s Parish House (52844-57711)',37.778093,-122.255116,'Other'),new Array('St Bede`s Parish House (52844-77324)',37.778093,-122.255116,'Other'),new Array('St Mary (65200-48551)',37.778093,-122.255116,'Other'),new Array('HMP Wayland (36981-35081)',37.778093,-122.255116,'Other'),new Array(' (52846-57711)',37.778093,-122.255116,'Other'),new Array('HMP Highpoint (36982-35082)',37.778093,-122.255116,'Other'),new Array('St Mary`s Parish House (52878-57728)',37.778093,-122.255116,'Other'),new Array('HMP Edmunds Hill (36983-35083)',37.778093,-122.255116,'Other'),new Array('Priest`s House (53046-57812)',37.778093,-122.255116,'Other'),new Array('Sacred Heart Presbytery (52842-57710)',37.778093,-122.255116,'Other'),new Array('Methodist Church Hall Church (59573-64961)',37.778093,-122.255116,'Other'),new Array('Padley Chapel (65186-70875)',37.778093,-122.255116,'Other'),new Array('St Paul`s and The Good Shepherd Church (59761-64973)',37.778093,-122.255116,'Other'),new Array('Methodist Church Hall Church (63213-66773)',37.778093,-122.255116,'Other'),new Array('St Michael and All Angels Church Of England and Catholic Church (57503-63539)',37.818023,-122.267278,'Other'),new Array('All Saints and St Paul Church (59572-64960)',37.732998,-122.212966,'Other'),new Array('All Saints and The Good Shepherd Church (63210-66772)',37.732998,-122.212966,'Other'),new Array('RAF Alconbury Church (43800-45160)',37.793839,-122.401238,'ParishChurch'),new Array('Ss. Peter and Paul (anglican Church) Church (43707-45141)',37.793839,-122.401238,'Other'),new Array('Church Centre Bar Hill Church (43701-45128)',37.793839,-122.401238,'ParishChurch'),new Array('St Vincent De Paul Church (43801-45128)',37.793839,-122.401238,'ParishChurch'),new Array('Methodist Church Church (63215-66775)',37.793947,-122.408338,'Other'),new Array('Our Lady Of Consolation and St. Stephen Church (43754-45199)',37.7786,-122.4208,'ParishChurch'),new Array('St. John`s Church (methodist) Church (43753-45194)',37.7786,-122.4208,'Other'),new Array('St John Of The Cross Church (43736-45124)',37.7786,-122.4208,'ParishChurch'),new Array('St Helen Church (43765-45124)',37.7786,-122.4208,'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';
}
//