strList="
Our Lady of Victories (0 miles)
Zoom on map | View full information
The Holy Family (1.1 miles)
Zoom on map | View full information
Carr House Lane Community (1.3 miles)
Zoom on map | View full information
St Mary`s Catholic Primary School (1.7 miles)
Zoom on map | View full information
Dowhills Road Community (1.9 miles)
Zoom on map | View full information
St Helen (2.1 miles)
Zoom on map | View full information
St Mary (2.1 miles)
Zoom on map | View full information
";
function showResults()
{
document.getElementById("mapList").style.display="block";
}
var records = new Array(new Array('Our Lady of Victories (52789-57683)',53.523858,-3.055634,'ParishChurch'),new Array('The Holy Family (52787-57682)',53.530633,-3.031402,'ParishChurch'),new Array('Carr House Lane Community (72446-77298)',53.5247186,-3.0247593,'Other'),new Array('St Mary`s Catholic Primary School (37486-35590)',53.505152,-3.027863,'School'),new Array('Dowhills Road Community (72451-77303)',53.4965473,-3.0455911,'Other'),new Array('St Helen (52793-57685)',53.498249,-3.027817,'ParishChurch'),new Array('St Mary (52797-57687)',53.498249,-3.027817,'ParishChurch'),new Array('Our Lady of Compassion (52807-57692)',53.557426,-3.058342,'ParishChurch'),new Array('Our Lady Of Compassion Catholic Primary School (37505-35609)',53.557395,-3.050566,'School'),new Array(' (72509-57685)',53.491964,-3.0278132,'Other'),new Array('Ursuline Catholic Primary School (37502-35606)',53.487413,-3.046937,'School'),new Array('St Joseph (52795-57686)',53.488059,-3.044044,'ParishChurch'),new Array('The Gild Hall (72607-57692)',53.560177,-3.0570184,'Other'),new Array('St Jerome`s Catholic Primary School (37503-35607)',53.55609,-3.080982,'School'),new Array(' (72509-57686)',53.491964,-3.0278132,'Other'),new Array('Arrowsmith House (72475-77327)',53.4880752,-3.0440414,'Other'),new Array('Seafield (72474-77326)',53.4880752,-3.0440414,'Other'),new Array('Holy Family Catholic High School (37627-35731)',53.500271,-3.007875,'School'),new Array('The Mount, St Mary`s Preparatory School (70982-74284)',53.4862879,-3.044060500000001,'School'),new Array('St Mary`s College School (38887-36993)',53.488395,-3.026011,'School'),new Array('Gt Crosby Catholic Primary School (37485-35589)',53.489706,-3.016638,'School'),new Array('Sacred Heart Catholic High School (37626-35730)',53.486972,-3.022104,'School'),new Array('St William Of York Catholic Primary School (37499-35603)',53.495866,-3.001409,'School'),new Array('Herbert House (72425-77293)',53.56536430000001,-3.0740741,'Other'),new Array('Herbert House (72425-77233)',53.56536430000001,-3.0740741,'Other'),new Array('St Joseph`s Convent (72449-77301)',53.5603948,-3.0927898,'Other'),new Array('St William of York (52803-57690)',53.4957,-2.997712,'ParishChurch'),new Array('Clarence House Rc School (37658-35762)',53.570914,-3.065897,'School'),new Array('St Edmund of Canterbury (52791-77170)',53.47679,-3.031246,'ParishChurch'),new Array('St Edmund and St Thomas Catholic Primary School (37508-35612)',53.47679,-3.031246,'School'),new Array('Our Lady Queen Of Peace Catholic Primary School (37500-35604)',53.481434,-3.001039,'School'),new Array('Bramhall Road Community (72465-77317)',53.4736469,-3.0202142,'Other'),new Array('Ss Peter and Paul (52799-57688)',53.471382,-3.022572,'ParishChurch'),new Array('Holy Spirit Catholic Primary School (37475-35579)',53.48543,-2.981979,'School'),new Array('English Martyrs (52773-57675)',53.474555,-3.001879,'ParishChurch'),new Array('Our Lady Star Of The Sea Church (52781-57679)',53.474555,-3.001879,'ParishChurch'),new Array('St John Bosco Catholic Primary School (37507-35611)',53.51906,-2.953828,'School'),new Array('St Benet`s Catholic Primary School (37477-35581)',53.493111,-2.965967,'School'),new Array('St Ambrose Barlow High School (37628-35732)',53.493817,-2.96431,'School'),new Array('English Martyrs Catholic Primary School (37506-35610)',53.472125,-2.996225,'School'),new Array('Our Lady of Walsingham (52777-57677)',53.482374,-2.970937,'ParishChurch'),new Array('St Gregory`s Catholic Primary School (37501-35605)',53.52798,-2.94558,'School'),new Array('Our Lady Of Walsingham Catholic Infant School (37478-35582)',53.482374,-2.970937,'School'),new Array('St Gregory the Great (52889-57733)',53.5245397,-2.9433843,'ParishChurch'),new Array('Our Lady Star Of The Sea Catholic Primary School (37509-35613)',53.464929,-3.00648,'School'),new Array('St Gregory`s Parish House (52888-57733)',53.524553,-2.943513,'Other'),new Array('Savio RC High School (37624-35728)',53.474882,-2.976974,'School'),new Array('St Robert Bellarmine (52771-57675)',53.468142,-2.985511,'ParishChurch'),new Array('St Robert Bellarmine RC Primary School (37466-35570)',53.468096,-2.984561,'School'),new Array('St Robert Bellarmine (52771-57674)',53.468142,-2.985511,'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';
}
//