strList="
Our Lady (0 miles)
Zoom on map | View full information
Our Lady (0 miles)
Zoom on map | View full information
Holy Name School (0.4 miles)
Zoom on map | View full information
Loreto College School (0.4 miles)
Zoom on map | View full information
St Bede`s College School (0.5 miles)
Zoom on map | View full information
St Bede`s College Prep (0.5 miles)
Zoom on map | View full information
Polish Church of Divine Mercy, Moss Side Parish Church (0.5 miles)
Zoom on map | View full information
";
function showResults()
{
document.getElementById("mapList").style.display="block";
}
var records = new Array(new Array('Our Lady (57273-63313)',53.4576579,-2.2476991,'ParishChurch'),new Array('Our Lady (57273-74893)',53.4576579,-2.2476991,'ParishChurch'),new Array('Holy Name School (38120-36224)',53.461116,-2.240657,'School'),new Array('Loreto College School (39097-37203)',53.462673,-2.252926,'School'),new Array('St Bede`s College School (38957-37063)',53.451698,-2.253147,'School'),new Array('St Bede`s College Prep (7447-74619)',53.45139169999999,-2.2525718,'School'),new Array('Polish Church of Divine Mercy, Moss Side Parish Church (5969-75381)',53.4585,-2.236244,'ParishChurch'),new Array('Dom Polski (71107-75281)',53.45452220000001,-2.2602975,'Other'),new Array('SChr Community (71108-75282)',53.45452220000001,-2.2602975,'Other'),new Array('Dom Polski (71107-75356)',53.45452220000001,-2.2602975,'Other'),new Array('The Divine Mercy RC Primary School (71030-74612)',53.4505906,-2.235769699999992,'School'),new Array('Our Lady School (38122-36226)',53.452911,-2.265457,'School'),new Array('St Alphonsus RC Primary School (39033-37139)',53.463531,-2.263595,'School'),new Array(' (71249-74931)',53.458594,-2.266165,'Other'),new Array('St Wilfrid`s RC Primary School (38942-37048)',53.468838,-2.253309,'School'),new Array('St Alphonsus (57283-63313)',53.458594,-2.266165,'ParishChurch'),new Array('The English Martyrs (57287-63320)',53.446917,-2.251293,'ParishChurch'),new Array('Central Manchester Hospital - Roman Catholic Chaplaincy Team (71210-75224)',53.4624524,-2.2277094,'Other'),new Array('Holy Name (5933-74535)',53.464434,-2.227258,'ParishChurch'),new Array('St Edward (57285-63311)',53.455162,-2.223409,'ParishChurch'),new Array('Society of African Missions Provincial House and Mission Promotions Centre (71103-75123)',53.45857230000001,-2.219911,'Other'),new Array('Xaverian College School (39094-37200)',53.45548,-2.222328,'School'),new Array('SMA Community House (71104-75127)',53.45857230000001,-2.219911,'Other'),new Array('St Kentigern (57257-63305)',53.444038,-2.228867,'ParishChurch'),new Array('St Kentigern`s RC Primary School (38956-37062)',53.442474,-2.236035,'School'),new Array('St John Vianney School (39127-37233)',53.451209,-2.278712,'School'),new Array('St Joseph`s Home (71036-75352)',53.4621576,-2.213331400000016,'Other'),new Array('St Joseph`s Home (71036-75351)',53.4621576,-2.213331400000016,'Other'),new Array('St Joseph`s Home (71036-74954)',53.4621576,-2.213331400000016,'Other'),new Array('St Joseph (57269-63311)',53.460924,-2.212329,'ParishChurch'),new Array('St Teresa`s RC Primary School (39030-37136)',53.452259,-2.283372,'School'),new Array('St John`s RC Primary School (38946-37052)',53.446579,-2.282807,'School'),new Array('St Joseph`s RC Primary School (38947-37053)',53.459684,-2.20896,'School'),new Array('St Mary (The Hidden Gem) (57221-63287)',53.480168,-2.246262,'ParishChurch'),new Array('St Bernadette (57289-63321)',53.433083,-2.247587,'ParishChurch'),new Array('Loreto High School (38951-37057)',53.434013,-2.263442,'School'),new Array('St Joseph`s RC Primary School (39003-37109)',53.476493,-2.279029,'School'),new Array('Our Lady and St John (57241-63297)',53.440659,-2.282306,'ParishChurch'),new Array('Diocesan Pilgrimage to Lourdes (71344-74906)',53.483693,-2.261089,'Other'),new Array('St Cuthbert (57291-63322)',53.432222,-2.229401,'ParishChurch'),new Array('Diocesan Offices (341-883)',53.48374330000001,-2.2598303,'Other'),new Array('Lourdes Pilgrimage Office (71241-74906)',53.483693,-2.261089,'Other'),new Array('Cathedral Church of St John the Evangelist (6071-5180)',53.4839085,-2.261098,'Cathedral'),new Array('St Peter`s and St John`s RC Primary School (39002-37108)',53.487088,-2.260049,'School'),new Array('St Peter`s RC High School- Specialist College for Business and Enterprise (39111-37217)',53.459454,-2.196233,'School'),new Array('St Cuthbert`s RC Primary School (38948-37054)',53.429703,-2.22141,'School'),new Array('Mary and Joseph Home (71161-75395)',53.48132529999999,-2.2093405,'Other'),new Array('St Ambrose (57239-63296)',53.423331,-2.258131,'ParishChurch'),new Array('St Patrick (57247-63300)',53.490224,-2.226112,'ParishChurch'),new Array('St Chad (57235-63294)',53.49227,-2.239854,'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';
}
//