strList="
St Anthony of Padua (0 miles)
Zoom on map | View full information
St Anthony of Padua (0 miles)
Zoom on map | View full information
St Teresa of Liseux (5.9 miles)
Zoom on map | View full information
St Teresa of Liseux (5.9 miles)
Zoom on map | View full information
Sacred Heart School (8.4 miles)
Zoom on map | View full information
St Mary Star of the Sea (8.7 miles)
Zoom on map | View full information
St Andrew Church (8.7 miles)
Zoom on map | View full information
";
function showResults()
{
document.getElementById("mapList").style.display="block";
}
var records = new Array(new Array('St Anthony of Padua (34917-75300)',50.949197,0.732858,'ParishChurch'),new Array('St Anthony of Padua (34917-33760)',50.949197,0.732858,'ParishChurch'),new Array('St Teresa of Liseux (34885-33744)',50.964649,0.598541,'ParishChurch'),new Array('St Teresa of Liseux (34885-33681)',50.964649,0.598541,'ParishChurch'),new Array('Sacred Heart School (33296-33032)',50.863414,0.597966,'School'),new Array('St Mary Star of the Sea (34833-33718)',50.858912,0.593325,'ParishChurch'),new Array('St Andrew Church (61270-65714)',51.071937,0.691647,'ParishChurch'),new Array('The Holy Redeemer (36472-33761)',50.878519,0.552986,'Church'),new Array('Poor Clare Convent (71349-75413)',50.8784778,0.5525237,'Other'),new Array('St Thomas of Canterbury and English Martyrs (34919-33761)',50.8564611,0.5653138,'ParishChurch'),new Array('St Mary Star Of The Sea Catholic Primary School (38762-36868)',50.857604,0.5654,'School'),new Array('Alix Lodge (71092-75406)',50.8601226,0.5476338,'Other'),new Array('Filsham Lodge (71091-75078)',50.8601226,0.5476338,'Other'),new Array('Our Lady Immaculate and St Michael (34759-33681)',50.917869,0.484624,'ParishChurch'),new Array('St. Mary Magdalene`s School (33283-33019)',50.849499,0.492894,'School'),new Array('St Richard`s Catholic College (33272-33008)',50.8421899,0.4846949,'School'),new Array('St Richard`s Catholic College (33272-33009)',50.8421899,0.4846949,'School'),new Array('Sisters of Providence Community House (71087-75009)',50.8435127,0.4792946,'Other'),new Array('St Mary Magdalene (34761-33764)',50.841495,0.478475,'ParishChurch'),new Array('St Mary Magdalene (34761-33682)',50.841495,0.478475,'ParishChurch'),new Array('Our Lady of the Rosary (34925-33764)',50.858456,0.461598,'ParishChurch'),new Array('St Theodore Church (61264-65711)',51.094931,0.530013,'ParishChurch'),new Array('St Simon Stock Church (61266-65712)',51.137698,0.857424,'ParishChurch'),new Array('St Simon Of England Primary School (38594-36698)',51.139803,0.846546,'School'),new Array('St Simon Of England RC (va) Primary School (39068-37174)',51.142762,0.866573,'School'),new Array('St Teresa Church (61268-65713)',51.152632,0.866112,'ParishChurch'),new Array('St Teresa`s Catholic Primary School (38595-36699)',51.155348,0.86721,'School'),new Array('St Martha (34865-33764)',50.835554,0.427838,'ParishChurch'),new Array('St Martha (34865-33734)',50.835554,0.427838,'ParishChurch'),new Array('St Martha (34865-33682)',50.835554,0.427838,'ParishChurch'),new Array('Christ the King (34783-33693)',50.997336,0.381631,'ParishChurch'),new Array('Sacred Heart Church (61262-65710)',51.115142,0.468959,'ParishChurch'),new Array('St Augustine`s Catholic Primary School (38608-36712)',51.07725,1.073414,'School'),new Array('The Virgin Mother of Good Counsel Church (61214-65686)',51.073747,1.092656,'ParishChurch'),new Array('Holy Rood (34895-33749)',50.81235,0.348315,'ParishChurch'),new Array('Sacred Heart School (38735-36842)',51.065008,0.324356,'School'),new Array('The Sacred Heart (34945-33774)',51.065008,0.324356,'ParishChurch'),new Array('St Joseph Church (61209-65685)',51.0883839,1.144107200000008,'ParishChurch'),new Array('St Catherine (34839-33721)',50.973651,0.258723,'ParishChurch'),new Array('Convent of the Holy Child (71089-75076)',51.02067419999999,0.2612821,'Other'),new Array('St Leonard`s Mayfield School (38747-36853)',51.021602,0.260782,'School'),new Array('Christ the King (34797-33700)',50.7914215,0.314141899999981,'ParishChurch'),new Array('St Thomas of Canterbury (34869-33736)',51.020022,0.254573,'ParishChurch'),new Array('Our Lady Help of Christians and St Aloysius Church (61212-65685)',51.0812588,1.178382000000056,'ParishChurch'),new Array('Holy Family Church (61248-65703)',51.238438,0.556449,'ParishChurch'),new Array('Stella Maris Catholic Primary School (38603-36707)',51.087362,1.171931,'School'),new Array('Holy Family Catholic Primary School (38627-36731)',51.238438,0.556449,'School'),new Array('St Wilfrid (34827-33715)',50.859999,0.254433,'ParishChurch'),new Array('St Justus Church (61086-65620)',51.178035,0.384008,'ParishChurch'),new Array('St Joachim (65977-33700)',50.8012634,0.276495599999976,'Church'));
// 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';
}
//