strList="
St Bede`s Catholic Sports College School (0 miles)
Zoom on map | View full information
St Bede`s RCHS (0.2 miles)
Zoom on map | View full information
St John Vianney (0.3 miles)
Zoom on map | View full information
St John Vianney (0.3 miles)
Zoom on map | View full information
St Peter`s RC Primary School (0.8 miles)
Zoom on map | View full information
St Peter in Chains (0.8 miles)
Zoom on map | View full information
Ss Mary and John (Pleasington Priory) (1.2 miles)
Zoom on map | View full information
";
function showResults()
{
document.getElementById("mapList").style.display="block";
}
var records = new Array(new Array('St Bede`s Catholic Sports College School (38040-36144)',53.727097,-2.516595,'School'),new Array('St Bede`s RCHS (9520-74610)',53.72922579999999,-2.51511430000005,'School'),new Array('St John Vianney (57067-78699)',53.727841,-2.508159,'ParishChurch'),new Array('St John Vianney (57067-63210)',53.727841,-2.508159,'ParishChurch'),new Array('St Peter`s RC Primary School (39038-37144)',53.7370117,-2.507712099999935,'School'),new Array('St Peter in Chains (71026-63210)',53.736482,-2.505094,'Church'),new Array('Ss Mary and John (Pleasington Priory) (6039-63210)',53.735022,-2.542841,'Church'),new Array('Our Lady of Perpetual Succour (57069-63211)',53.726787,-2.478784,'ParishChurch'),new Array('Our Lady Of Perpetual Succour School (37942-36046)',53.726784,-2.47723,'School'),new Array('Sacred Heart (5756-63204)',53.75073,-2.506651,'ParishChurch'),new Array('St Edward`s School (37947-36051)',53.710625,-2.482105,'School'),new Array('St Edward (57145-63249)',53.710625,-2.482105,'ParishChurch'),new Array('St Anne (57055-63204)',53.746849,-2.487588,'Church'),new Array('St Anne`s School (37945-36049)',53.747589,-2.486868,'School'),new Array('Sacred Heart School (37943-36047)',53.753058,-2.503158,'School'),new Array('St Mary and St Joseph`s School (37949-36053)',53.739751,-2.47342,'School'),new Array('Franciscan Convent (71123-75392)',53.7559793,-2.4927918,'Other'),new Array('Franciscan Convent (71123-75339)',53.7559793,-2.4927918,'Other'),new Array('Royal Blackburn Hospital Chapel (71166-75212)',53.73557479999999,-2.4627143,'Other'),new Array('St Alban`s School (37944-36048)',53.752252,-2.473834,'School'),new Array('Good Shepherd (57059-63205)',53.757723,-2.484996,'Church'),new Array('St Alban (57057-63205)',53.752982,-2.474765,'ParishChurch'),new Array('Our Lady And St John`s Catholic Arts College School (37953-36057)',53.741103,-2.453877,'School'),new Array('St. Paul`s R.C.Primary School (38037-36141)',53.764293,-2.541277,'School'),new Array('St Joseph`s Catholic Primary School (37562-35666)',53.695503,-2.558826,'School'),new Array('St Antony`s School (37946-36050)',53.742979,-2.449728,'School'),new Array('St Joseph`s School (37948-36052)',53.690831,-2.4706,'School'),new Array('St Joseph (5840-63249)',53.690309,-2.465666,'ParishChurch'),new Array('Holy Souls School (37941-36045)',53.770221,-2.484732,'School'),new Array('St Augustine (5814-63343)',53.765956,-2.461421,'ParishChurch'),new Array('St Chad (52847-57712)',53.687628,-2.574087,'ParishChurch'),new Array('St Joseph (The Moorland Sanctuary) (52857-57717)',53.687628,-2.574087,'ParishChurch'),new Array('Holy Souls (57053-63205)',53.777092,-2.47609,'Church'),new Array('Marists (71038-74957)',53.77995319999999,-2.482060300000057,'Other'),new Array('St Mary`s Catholic School (66448-36107)',53.781791,-2.534809,'School'),new Array('St Mary (57329-74352)',53.781791,-2.534809,'ParishChurch'),new Array('St Joseph`s Catholic Primary School (37552-35656)',53.7294638,-2.616722900000013,'School'),new Array('St Joseph (52853-57715)',53.740907,-2.619154,'ParishChurch'),new Array('St Catherine`s RC Primary School (37545-35649)',53.740907,-2.619154,'School'),new Array('St Charles Borromeo (57351-63352)',53.76603,-2.418927,'ParishChurch'),new Array('St Charles School (38085-36189)',53.766679,-2.417865,'School'),new Array('St Chad`s Catholic Primary School (37561-35665)',53.68122,-2.612248,'School'),new Array('St Bede`s Catholic Primary School (37557-35661)',53.707065,-2.639089,'School'),new Array('St Mary (57331-63342)',53.744046,-2.389191,'ParishChurch'),new Array('St Mary School (38090-36108)',53.744364,-2.38797,'School'),new Array('St Mary and St John Southworth (57395-63374)',53.7580366,-2.6425129,'ParishChurch'),new Array('Sacred Heart RC Primary School (8851-36101)',53.753722,-2.387298,'School'),new Array('St Wulstan School (38094-36198)',53.7834891,-2.414969,'School'),new Array('St Wulstan (57175-63263)',53.7834891,-2.414969,'ParishChurch'),new Array('St Mary (Our Lady Assumed into Heaven) (57203-74352)',53.801114,-2.450007,'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';
}
//