strList="
St Mary`s School (0 miles)
Zoom on map | View full information
St Mary (0.9 miles)
Zoom on map | View full information
Our Lady`s RC Primary School (2.6 miles)
Zoom on map | View full information
St Bernard`s School (2.7 miles)
Zoom on map | View full information
Sacred Heart School (2.7 miles)
Zoom on map | View full information
Our Lady of the Immaculate Conception (2.7 miles)
Zoom on map | View full information
Sacred Heart of Jesus (2.8 miles)
Zoom on map | View full information
";
function showResults()
{
document.getElementById("mapList").style.display="block";
}
var records = new Array(new Array('St Mary`s School (38052-36156)',53.590835,-2.535009,'School'),new Array('St Mary (57191-63272)',53.599635,-2.552445,'ParishChurch'),new Array('Our Lady`s RC Primary School (39035-37141)',53.57043,-2.588841,'School'),new Array('St Bernard`s School (38045-36149)',53.570096,-2.480688,'School'),new Array('Sacred Heart School (38044-36148)',53.552369,-2.521859,'School'),new Array('Our Lady of the Immaculate Conception (57177-63265)',53.575522,-2.594198,'ParishChurch'),new Array('Sacred Heart of Jesus (57429-63391)',53.551456,-2.522863,'ParishChurch'),new Array('Anderton St Joseph`s Catholic Primary School (37551-35655)',53.615695,-2.59263,'School'),new Array('St Joseph`s Old School (4998-57714)',53.616309,-2.595662,'Other'),new Array('St Thomas Of Canterbury School (38056-36160)',53.585039,-2.463547,'School'),new Array('St Joseph (52851-57714)',53.616309,-2.595662,'ParishChurch'),new Array('St Thomas of Canterbury (57105-63227)',53.5838277,-2.460171599999967,'ParishChurch'),new Array('Parish Office (71308-63227)',53.584341,-2.456943,'Other'),new Array('St Ethelbert`s School (38048-36152)',53.56838,-2.455256,'School'),new Array('St Ethelbert (57097-63225)',53.56776199999999,-2.455522599999995,'ParishChurch'),new Array('St Joseph`s School (38051-36069)',53.590347,-2.44821,'School'),new Array('The Holy Family (57313-63333)',53.557735,-2.602614,'ParishChurch'),new Array('Holy Family RC Primary New Springs School (39036-37142)',53.557629,-2.605374,'School'),new Array('Thornleigh Salesian Collegeandnbsp, (38060-36164)',53.601347,-2.443703,'School'),new Array('Thornleigh Salesian House (71042-75117)',53.6012595,-2.443732899999986,'Other'),new Array('Thornleigh Salesian House (71042-74961)',53.6012595,-2.443732899999986,'Other'),new Array('St Joseph`s (71041-74961)',53.6026281,-2.44302730000004,'Other'),new Array('St Joseph (57101-63227)',53.591753,-2.440918399999987,'ParishChurch'),new Array('St Joseph`s (71041-75116)',53.6026281,-2.44302730000004,'Other'),new Array('The Holy Infant and St Anthony (57089-63221)',53.601765,-2.436055,'ParishChurch'),new Array('St Vincent de Paul (57109-63231)',53.545719,-2.470531,'ParishChurch'),new Array('Holy Infant and St Anthony RC Primary School (66527-36060)',53.602445,-2.436144,'School'),new Array('20 Newbrook Road (71143-75370)',53.545719,-2.470531,'Other'),new Array('St Benedict`s Catholic Primary School (37522-35626)',53.53689,-2.584105,'School'),new Array('St Edmund (57081-63217)',53.579162,-2.434014,'ParishChurch'),new Array('St Peter and St Paul School (37968-36072)',53.571387,-2.43454,'School'),new Array('St Benedict (52985-57781)',53.534614,-2.578929,'ParishChurch'),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('The Good Shepherd (Polish) (5780-75379)',53.566053,-2.435437,'ParishChurch'),new Array('All Saints Ukrainian Catholic Church (71215-75387)',53.58346239999999,-2.4282889,'Church'),new Array('St Patrick (5776-63217)',53.576517,-2.427175,'Church'),new Array('St William of York (57099-63225)',53.559539,-2.436187,'Church'),new Array('St Richard`s RC Primary School (37526-35630)',53.528264,-2.493912,'School'),new Array('St William`s Catholic Primary School (37525-35629)',53.540807,-2.60791,'School'),new Array('St John (53027-77729)',53.550213,-2.628059,'ParishChurch'),new Array('St Mary (53031-57802)',53.550213,-2.628059,'ParishChurch'),new Array('St William Of York School (38057-36161)',53.560598,-2.432859,'School'),new Array('St Mary`s and St John`s Catholic Primary School (37512-35616)',53.550213,-2.628059,'School'),new Array('St John (53027-57802)',53.550213,-2.628059,'ParishChurch'),new Array('St Patrick`s Catholic Primary School (37514-35618)',53.544932,-2.620374,'School'),new Array('St Patrick`s Parish House (53032-57802)',53.544932,-2.620374,'Other'),new Array('St Wilfrid (52999-57788)',53.52514,-2.572076,'ParishChurch'),new Array('St John The Evangelist School (38050-36154)',53.617431,-2.425414,'School'),new Array('St Richard (52875-57726)',53.521276,-2.49895,'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';
}
//