strList="
St Catherine`s Of Sienna Primary School (0 miles)
Zoom on map | View full information
All Saints RC Primary School (1 miles)
Zoom on map | View full information
All Saints (1.2 miles)
Zoom on map | View full information
St Lewis Catholic Primary School (2.1 miles)
Zoom on map | View full information
St John Southworth Catholic Primary School (2.6 miles)
Zoom on map | View full information
Sacred Heart Parish House (2.7 miles)
Zoom on map | View full information
St Wilfrid`s Catholic Primary School (2.7 miles)
Zoom on map | View full information
";
function showResults()
{
document.getElementById("mapList").style.display="block";
}
var records = new Array(new Array('St Catherine`s Of Sienna Primary School (37536-35640)',53.47152,-2.570311,'School'),new Array('All Saints RC Primary School (37534-35638)',53.476304,-2.592132,'School'),new Array('All Saints (52975-57784)',53.474881,-2.598108,'ParishChurch'),new Array('St Lewis Catholic Primary School (37700-35804)',53.444411,-2.545271,'School'),new Array('St John Southworth Catholic Primary School (37537-35641)',53.49256,-2.621192,'School'),new Array('Sacred Heart Parish House (53004-77188)',53.49847949999999,-2.5220854,'Other'),new Array('St Wilfrid`s Catholic Primary School (38892-36998)',53.493511,-2.623377,'School'),new Array('St Mary and St John (52993-57785)',53.456249,-2.630963,'ParishChurch'),new Array('Sacred Heart (53007-77188)',53.498472,-2.522162,'ParishChurch'),new Array('Leigh Sacred Heart Catholic Primary School (37531-35635)',53.499763,-2.521017,'School'),new Array('St Oswald`s Catholic Primary School (37518-35622)',53.487539,-2.639294,'School'),new Array('St Joseph (53013-57795)',53.494222,-2.509312,'ParishChurch'),new Array('St Edmund Arrowsmith Catholic High School (37634-35738)',53.48252970000001,-2.639852000000019,'School'),new Array('St Oswald`s Presbytery (52994-57786)',53.485186,-2.640555,'Other'),new Array('St Joseph`s Catholic Primary School (38889-36995)',53.494222,-2.509312,'School'),new Array('St Mary`s Catholic Junior School (37468-35572)',53.454477,-2.636418,'School'),new Array('St Joseph (53013-77188)',53.494222,-2.509312,'ParishChurch'),new Array('St Oswald and St Edmund Arrowsmith (52995-57786)',53.485186,-2.640555,'ParishChurch'),new Array('Xii Apostles` RC Primary School (37532-35636)',53.511925,-2.528977,'School'),new Array('Holy Family (52979-57778)',53.5162774,-2.598757,'ParishChurch'),new Array('Ince Holy Family RC Primary School (37524-35628)',53.516828,-2.600433,'School'),new Array('St Wilfrid (52999-57788)',53.52514,-2.572076,'ParishChurch'),new Array('St Patrick (52997-57787)',53.453887,-2.655745,'ParishChurch'),new Array('St Patrick`s Parish House (52996-57785)',53.453887,-2.655745,'Other'),new Array('St Patrick`s Parish House (52996-57787)',53.453887,-2.655745,'Other'),new Array('St Patrick (52997-57785)',53.453887,-2.655745,'ParishChurch'),new Array('Blessed English Martyrs (52977-57777)',53.469431,-2.663351,'ParishChurch'),new Array('Haydock English Martyrs Catholic Primary School (37470-35574)',53.469431,-2.663351,'School'),new Array('Sacred Heart (52983-77174)',53.5270397,-2.547856000000024,'ParishChurch'),new Array('Sacred Heart Catholic Primary School (37523-35627)',53.52704,-2.547856,'School'),new Array('St Bridget`s Catholic Primary School (37712-35816)',53.414535,-2.566057,'School'),new Array('St Bridget`s Parish House (4813-57774)',53.414492,-2.563785,'Other'),new Array('St Stephen, First Martyr (52971-57774)',53.413974,-2.589038,'ParishChurch'),new Array('St Stephen`s Catholic Primary School (37698-35802)',53.413974,-2.589038,'School'),new Array('St Lewis (52991-77213)',53.429375,-2.497167,'ParishChurch'),new Array('Our Lady Immaculate (52981-57779)',53.50056,-2.662993,'ParishChurch'),new Array('St Benedict (52985-57781)',53.534614,-2.578929,'ParishChurch'),new Array('St Ambrose Barlow (53009-57793)',53.521276,-2.49895,'ParishChurch'),new Array('St Ambrose Barlow (53009-77173)',53.521276,-2.49895,'ParishChurch'),new Array('St Richard (52875-57726)',53.521276,-2.49895,'ParishChurch'),new Array('St Mary`s Catholic High School (37632-35736)',53.495097,-2.46463,'School'),new Array('St Paul Of The Cross Catholic Primary School (37699-35803)',53.429672,-2.657133,'School'),new Array('St Benedict`s Catholic Primary School (37522-35626)',53.53689,-2.584105,'School'),new Array('St Paul of the Cross (52969-57773)',53.430071,-2.661534,'ParishChurch'),new Array('Sacred Heart RC Primary School (37528-35632)',53.516317,-2.48308,'School'),new Array('St Richard of Chichester (53015-57796)',53.522516,-2.492623,'ParishChurch'),new Array('St Oswald (52967-57769)',53.402076,-2.564252,'ParishChurch'),new Array('St Oswald`s RC Primary School (37701-35805)',53.402076,-2.564252,'School'),new Array('St Richard of Chichester (53015-77174)',53.522516,-2.492623,'ParishChurch'),new Array('St Ambrose Barlow Catholic Primary School (37538-35642)',53.499238,-2.460605,'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';
}
//