strList="
St Thomas of Canterbury (0 miles)
Zoom on map | View full information
Christ the King College (0.6 miles)
Zoom on map | View full information
St Thomas of Canterbury Primary School (0.8 miles)
Zoom on map | View full information
St David (3.9 miles)
Zoom on map | View full information
Holy Cross Primary School (4.3 miles)
Zoom on map | View full information
41 Briary Court - Flat (4.7 miles)
Zoom on map | View full information
Sorrowful and Immaculate Heart of Mary (6.3 miles)
Zoom on map | View full information
";
function showResults()
{
document.getElementById("mapList").style.display="block";
}
var records = new Array(new Array('St Thomas of Canterbury (957-9834)',50.698611,-1.298043,'ParishChurch'),new Array('Christ the King College (1157-10254)',50.694542,-1.310888,'School'),new Array('St Thomas of Canterbury Primary School (1187-10284)',50.691608,-1.312106,'School'),new Array('St David (854-9799)',50.753651,-1.282406,'ParishChurch'),new Array('Holy Cross Primary School (1179-10276)',50.760057,-1.278636,'School'),new Array('41 Briary Court - Flat (1098-887)',50.765788,-1.316365,'Other'),new Array('Sorrowful and Immaculate Heart of Mary (1008-9849)',50.726473,-1.162167,'ParishChurch'),new Array('39 Lea Road - House (1095-887)',50.650503,-1.172515,'Other'),new Array('St Mary`s Primary School (1148-10245)',50.726873,-1.147794,'School'),new Array('St Patrick (912-9816)',50.652559,-1.159536,'Church'),new Array('Sacred Heart (909-9816)',50.633602,-1.178411,'ParishChurch'),new Array('St John the Evangelist (929-9822)',50.794497,-1.19177,'ParishChurch'),new Array('Our Lady and St Wiifrid (1063-9816)',50.597095,-1.198446,'Church'),new Array('Immaculate Conception (930-9822)',50.822348,-1.21558,'ParishChurch'),new Array('St Michael (1015-9849)',50.684368,-1.080887,'ParishChurch'),new Array('St Mary`s Primary School (1121-10218)',50.800009,-1.147472,'School'),new Array('St Bernard (1084-75879)',50.833694,-1.38646,'ParishChurch'),new Array('St Columba (881-9807)',50.823451,-1.173438,'ParishChurch'),new Array('St Mary (878-9807)',50.795469,-1.121092,'ParishChurch'),new Array('St Saviour`s Primary School (1185-10282)',50.677364,-1.536214,'School'),new Array('St Saviour (1055-9859)',50.674827,-1.542806,'ParishChurch'),new Array('1 Netley Mansions - Flat (1105-887)',50.779459,-1.079805,'Other'),new Array('St Anthony`s Primary School (1122-10219)',50.855999,-1.252693,'School'),new Array(' (71418-74302)',50.794743,-1.0943038,'Other'),new Array('22A Cottage Grove - House (1093-887)',50.791613,-1.087327,'Other'),new Array('St Swithun`s Primary School (1128-10225)',50.783723,-1.081112,'School'),new Array('Cathedral of St John the Evangelist (974-9838)',50.8002751,-1.0946989,'Cathedral'),new Array('Our Lady and St Swithun (987-9840)',50.7857314,-1.0772281,'ParishChurch'),new Array('Our Lady of Mercy and St Joseph (934-9825)',50.759039,-1.539264,'ParishChurch'),new Array('St Philip Howard (865-9802)',50.851441,-1.201284,'Church'),new Array('Cathedral Discovery Centre (977-9838)',50.800432,-1.093811,'Other'),new Array('Cathedral Discovery Centre (977-76442)',50.800432,-1.093811,'Other'),new Array('Portsmouth Diocese (78513-887)',50.8006287,-1.0939354,'Other'),new Array('St Jude`s Primary School (1112-10209)',50.851441,-1.201284,'School'),new Array('Flat 3 - Flat (1094-887)',50.784583,-1.073917,'Other'),new Array('Diocese of Portsmouth (4807-887)',50.8003145,-1.091457499999933,'Other'),new Array('St Edmund`s Secondary School (1130-10227)',50.798778,-1.085826,'School'),new Array('St John`s Cathedral Primary School (1127-10224)',50.799426,-1.082436,'School'),new Array('12 Moresby Court - Flat (1099-887)',50.853034,-1.180786,'Other'),new Array('Sacred Heart (863-9802)',50.85109629999999,-1.1788176,'ParishChurch'),new Array('St Michael (1086-75879)',50.861432,-1.401257,'ParishChurch'),new Array('St Margaret Mary (4992-1383)',50.872354,-1.267979,'ParishChurch'),new Array('14 Grebe Close (1106-887)',50.848432,-1.150908,'Other'),new Array('Corpus Christi (973-9839)',50.819144,-1.080956,'ParishChurch'),new Array('10 The Kingsway - House (1096-887)',50.847252,-1.133472,'Other'),new Array('10b The Kingsway - Flat (1091-887)',50.847252,-1.133472,'Other'),new Array('10 The Kingsway - House (1107-887)',50.847252,-1.133472,'Other'),new Array('Corpus Christi Primary Academy (1126-10223)',50.817331,-1.080254,'School'),new Array('10B The Kingsway - Flat (1108-887)',50.847252,-1.133472,'Other'),new Array('Our Lady and St Joseph Primary School (1114-10211)',50.759845,-1.571228,'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';
}
//