strList="
St Joachim`s (0 miles)
Zoom on map | View full information
St Anne Church (0.1 miles)
Zoom on map | View full information
St Margaret And All Saints Church (1 miles)
Zoom on map | View full information
St Helen`s (1 miles)
Zoom on map | View full information
St Mark`s Church And Community Centre (1.1 miles)
Zoom on map | View full information
St Mary and St Edward with St John (1.4 miles)
Zoom on map | View full information
St Catherine Laboure Church (1.5 miles)
Zoom on map | View full information
";
function showResults()
{
document.getElementById("mapList").style.display="block";
}
var records = new Array(new Array('St Joachim`s (36555-34654)',51.511764,0.030854,'School'),new Array('St Anne Church (39276-37371)',51.511059,0.029526,'ParishChurch'),new Array('St Margaret And All Saints Church (39240-37339)',51.516464,0.00914,'ParishChurch'),new Array('St Helen`s (36554-34653)',51.523711,0.018657,'School'),new Array('St Mark`s Church And Community Centre (39224-37371)',51.515546,0.056418,'ParishChurch'),new Array('St Mary and St Edward with St John (39396-37371)',51.5008007,0.0583314,'ParishChurch'),new Array('St Catherine Laboure Church (65143-65636)',51.491428,0.042973,'Church'),new Array('Our Lady Of Compassion Church (39430-37470)',51.53285,0.037228,'ParishChurch'),new Array('St Edward`s (36560-34659)',51.53285,0.037228,'School'),new Array('St Michael`s (36556-34655)',51.520247,0.064571,'School'),new Array('St Michael Church (39292-37382)',51.529616,0.0576,'ParishChurch'),new Array('St Michael`s Catholic Primary School (39123-37229)',51.530275,0.057976,'School'),new Array('St Bonaventure`s Comprehensive School (36561-34660)',51.538638,0.02546,'School'),new Array('St Antony Of Padua Church (39300-37388)',51.539183,0.026205,'ParishChurch'),new Array('St Antony`s RC Primary School (38820-36926)',51.540942,0.024322,'School'),new Array('St Joseph`s Catholic Primary School (38510-36614)',51.486396,0.005226,'School'),new Array('St Angela`s Ursuline Rc School (38821-36927)',51.5421,0.029652,'School'),new Array('St Joseph Church (60947-65549)',51.486396,0.005226,'ParishChurch'),new Array('Ss Mary And Joseph Church (40742-38161)',51.511908,-0.021224,'ParishChurch'),new Array('Holy Family Catholic Primary School School (38264-36368)',51.509962,-0.019925,'School'),new Array('Our Lady of Grace Church (60935-65542)',51.479662,0.026634,'ParishChurch'),new Array('Our Lady Of Grace Catholic Primary School (38507-36611)',51.479662,0.026634,'School'),new Array('St Peter the Apostle Church (61118-65636)',51.488446,0.066924,'ParishChurch'),new Array('The Holy Name And Our Lady Of The Sacred Heart Church (40474-38027)',51.517539,-0.022926,'ParishChurch'),new Array('St Peter`s Catholic Primary School (38515-36619)',51.486613,0.068829,'School'),new Array('Queen Elizabeth Hospital Chapel (65142-65546)',51.479073,0.051148,'Other'),new Array('Our Lady And St Catherine Of Siena Church (40472-38026)',51.52854,-0.018845,'ParishChurch'),new Array('St Agnes Catholic Primary School (38442-36546)',51.527521,-0.018673,'School'),new Array('St Francis Of Assisi Church (39418-37461)',51.544154,0.002745,'ParishChurch'),new Array('St Joseph`s (36537-34636)',51.534481,0.077011,'School'),new Array('Our Lady`s Catholic Primary School (38293-36397)',51.513358,-0.030443,'School'),new Array('St Edmund Church (40694-38137)',51.492166,-0.024226,'ParishChurch'),new Array('St Francis (36559-34658)',51.547479,0.007074,'School'),new Array('Notre Dame Catholic Primary School (38513-36617)',51.480271,0.06592,'School'),new Array('St Edmund`s Catholic Primary School (38444-36548)',51.492166,-0.024226,'School'),new Array('St Angela`s Ursuline Convent School (36562-34661)',51.551809,0.029373,'School'),new Array('St Joseph Church (61116-65635)',51.476332,0.063338,'ParishChurch'),new Array('St Patrick`s Catholic Primary School (38512-36616)',51.488407,0.08536,'School'),new Array('St Mary And St Ethelburga Church (39214-37323)',51.538938,0.078743,'ParishChurch'),new Array('St Winefride`s (36558-34657)',51.54855,0.057921,'School'),new Array('Our Lady Immaculate Church (40672-38126)',51.512198,-0.034687,'ParishChurch'),new Array('St Stephen Church (39374-37437)',51.5498985,0.059452800000031,'ParishChurch'),new Array('St Ursula`s Catholic Convent For Girls School (38517-36621)',51.475784,-0.00581,'School'),new Array('Our Ladye Star of the Sea Church (60945-65548)',51.476182,-0.005922,'ParishChurch'),new Array('St John Fisher Church (60923-65535)',51.467956,0.025409,'ParishChurch'),new Array('The Guardian Angels Church (40688-38134)',51.524759,-0.036236,'ParishChurch'),new Array('St Patrick Church (61112-65633)',51.487456,0.088226,'ParishChurch'),new Array('Guardian Angels Catholic Primary School School (38260-36364)',51.524627,-0.036934,'School'),new Array('St Joseph`s Academy School (39059-37165)',51.467715,0.017568,'School'),new Array('St John`s Catholic Primary School (38567-36671)',51.501006,-0.041407,'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';
}
//