strList="
Our Lady Of Lourdes School (0 miles)
Zoom on map | View full information
Guardian Angels School (1.1 miles)
Zoom on map | View full information
Guardian Angels School (1.1 miles)
Zoom on map | View full information
St Hilda (1.2 miles)
Zoom on map | View full information
Our Lady of Good Counsel and Guardian Angels (1.2 miles)
Zoom on map | View full information
St Joseph (1.5 miles)
Zoom on map | View full information
Holly Mount School (1.6 miles)
Zoom on map | View full information
";
function showResults()
{
document.getElementById("mapList").style.display="block";
}
var records = new Array(new Array('Our Lady Of Lourdes School (38064-36168)',53.613314,-2.315014,'School'),new Array('Guardian Angels School (38061-36079)',53.596891,-2.319137,'School'),new Array('Guardian Angels School (38061-36165)',53.596891,-2.319137,'School'),new Array('St Hilda (57419-63386)',53.615492,-2.344229,'ParishChurch'),new Array('Our Lady of Good Counsel and Guardian Angels (57131-63242)',53.596584,-2.317552,'ParishChurch'),new Array('St Joseph (5818-63241)',53.597704,-2.288422,'ParishChurch'),new Array('Holly Mount School (38062-36080)',53.624086,-2.349385,'School'),new Array('St Joseph And St Bede School (38066-36170)',53.603848,-2.279792,'School'),new Array('St Marie (57129-63241)',53.591238,-2.299289,'ParishChurch'),new Array('St Gabriel School (38071-36175)',53.589086,-2.306494,'School'),new Array('St Marie School (38068-36172)',53.589777,-2.292631,'School'),new Array('Our Lady Queen of Poland (Polish), Bury Parish Church (5816-75380)',53.588832,-2.289588,'ParishChurch'),new Array('Holy Cross School (38073-36177)',53.584917,-2.298896,'School'),new Array('St Joseph School (38067-36171)',53.644555,-2.322871,'School'),new Array('St Joseph (57345-63349)',53.646016,-2.31869,'ParishChurch'),new Array('St Brendan`s School (38046-36150)',53.603172,-2.38675,'School'),new Array('Our Lady`s and St Paul`s RC Primary School (38975-37081)',53.589277,-2.251839,'School'),new Array('St Brendan (57103-63228)',53.603659,-2.388229,'ParishChurch'),new Array('St Mary School (38069-36173)',53.566627,-2.330215,'School'),new Array('St Mary (57343-63348)',53.566627,-2.330215,'ParishChurch'),new Array('St Osmund (57093-63223)',53.579718,-2.392802,'ParishChurch'),new Array('St Bernadette School (38065-36169)',53.558292,-2.292278,'School'),new Array('St Bernadette (57433-74536)',53.558183,-2.293795,'ParishChurch'),new Array('Ss Osmund and Andrew School (38053-36157)',53.577579,-2.390383,'School'),new Array('St Columba`s School (38047-36151)',53.600132,-2.411534,'School'),new Array('St Joseph`s RC Primary School (38984-37090)',53.586468,-2.222456,'School'),new Array('St Joseph (57183-63268)',53.591811,-2.220311,'ParishChurch'),new Array('Holy Family RC and CE College (71033-74615)',53.58658759999999,-2.22362069999997,'School'),new Array('St John the Evangelist (5802-63228)',53.616445,-2.419284,'Church'),new Array('St Teresa`s School (38055-36159)',53.561596,-2.377372,'School'),new Array('St Teresa (57215-63223)',53.561596,-2.377372,'ParishChurch'),new Array('St Michael (57435-74536)',53.551285,-2.278741,'ParishChurch'),new Array('St John The Evangelist School (38050-36154)',53.617431,-2.425414,'School'),new Array('St Michael School (38070-36174)',53.550991,-2.285602,'School'),new Array('Holy Infant and St Anthony RC Primary School (66527-36060)',53.602445,-2.436144,'School'),new Array('St Vincent De Paul RC Primary School (38982-37088)',53.622776,-2.194194,'School'),new Array('The Holy Infant and St Anthony (57089-63221)',53.601765,-2.436055,'ParishChurch'),new Array('All Saints Ukrainian Catholic Church (71215-75387)',53.58346239999999,-2.4282889,'Church'),new Array('St Vincent de Paul (57361-63357)',53.628156,-2.191149,'ParishChurch'),new Array('St Joseph`s (71041-74961)',53.6026281,-2.44302730000004,'Other'),new Array('St Veronica School (38116-36220)',53.689044,-2.326815,'School'),new Array('Thornleigh Salesian House (71042-74961)',53.6012595,-2.443732899999986,'Other'),new Array('St Patrick (5776-63217)',53.576517,-2.427175,'Church'),new Array('Thornleigh Salesian House (71042-75117)',53.6012595,-2.443732899999986,'Other'),new Array('St Joseph`s (71041-75116)',53.6026281,-2.44302730000004,'Other'),new Array('Our Lady Of Grace School (38063-36167)',53.538521,-2.286921,'School'),new Array('Thornleigh Salesian Collegeandnbsp, (38060-36164)',53.601347,-2.443703,'School'),new Array('St Edmund (57081-63217)',53.579162,-2.434014,'ParishChurch'),new Array('St Joseph (57101-63227)',53.591753,-2.440918399999987,'ParishChurch'),new Array('St Gregory`s School (38049-36153)',53.547745,-2.391044,'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';
}
//