strList="
St. Joseph School (0 miles)
Zoom on map | View full information
St Patrick (1.7 miles)
Zoom on map | View full information
Sacred Heart School (3.8 miles)
Zoom on map | View full information
Sacred Heart (4.5 miles)
Zoom on map | View full information
St Joseph (5 miles)
Zoom on map | View full information
Ss John Fisher And Thomas More Catholic Humanities College (5.1 miles)
Zoom on map | View full information
Holy Saviour School (5.4 miles)
Zoom on map | View full information
";
function showResults()
{
document.getElementById("mapList").style.display="block";
}
var records = new Array(new Array('St. Joseph School (38703-36807)',53.921249,-2.18865,'School'),new Array('St Patrick (71540-66723)',53.9124121,-2.1493069,'Church'),new Array('Sacred Heart School (38107-36211)',53.867315,-2.176044,'School'),new Array('Sacred Heart (57143-77554)',53.855951,-2.180167,'ParishChurch'),new Array('St Joseph (63121-66723)',53.859312,-2.123309,'ParishChurch'),new Array('Ss John Fisher And Thomas More Catholic Humanities College (38109-36127)',53.8470425,-2.1919142,'School'),new Array('Holy Saviour School (38105-36209)',53.845154,-2.212519,'School'),new Array('Holy Saviour (57303-63329)',53.841292,-2.204579,'ParishChurch'),new Array('Christ Church (shared with the Methodist Community) (57307-63329)',53.8369769,-2.216671700000006,'ParishChurch'),new Array('St John Southworth School (38108-36212)',53.832676,-2.219096,'School'),new Array('Holy Trinity School (38106-36210)',53.823759,-2.224655,'School'),new Array('St. Stephen School (38724-36828)',53.962559,-2.023832,'School'),new Array('St Stephen (63191-66762)',53.96381,-2.019733,'ParishChurch'),new Array('St John the Baptist RC Primary (38100-75689)',53.811908,-2.227036,'School'),new Array('St John the Baptist RC Primary (38100-36204)',53.811908,-2.227036,'School'),new Array('St John the Baptist (57117-63236)',53.804254,-2.232432,'ParishChurch'),new Array('St Mary (Queen of Peace) (66551-71457)',53.832325,-2.339562,'Church'),new Array('St Mary School (38091-36195)',53.829877,-2.340263,'School'),new Array('St Michael And St John School (38092-36196)',53.8700775,-2.391259200000036,'School'),new Array('St Michael and St John (57141-71457)',53.8700775,-2.391259200000036,'ParishChurch'),new Array('Blessed Trinity RC College (39041-37147)',53.7942134,-2.230508099999952,'School'),new Array('St. Mary Magdalene`s RC Primary School (38103-36207)',53.797561,-2.263592,'School'),new Array('St Mary School (38102-36206)',53.791455,-2.229977,'School'),new Array('St Mary Magdalene (57121-63343)',53.796408,-2.259169,'ParishChurch'),new Array('The Catholic Chapel (Sacred Heart) (63053-66762)',54.023911,-2.042682,'Church'),new Array('St Mary of the Assumption (57119-63236)',53.788744,-2.235169,'ParishChurch'),new Array('St Joseph`s Park Hill School (39044-37150)',53.798122,-2.285351,'School'),new Array('St Joseph (63132-66729)',53.916528,-1.954953,'ParishChurch'),new Array('Christ the King (57113-63236)',53.78422,-2.249912,'ParishChurch'),new Array('St Augustine Of Canterbury School (38099-36203)',53.790652,-2.281931,'School'),new Array('St John The Baptist (Padiham) School (38015-36119)',53.793915,-2.315237,'School'),new Array('St John the Baptist (57333-63343)',53.793915,-2.315237,'ParishChurch'),new Array('Our Lady of Mount Carmel (63041-66677)',53.914434,-1.937271,'ParishChurch'),new Array('Christ The King RCP School (38098-36202)',53.777424,-2.256804,'School'),new Array('Oakhill College School (39104-37210)',53.827799,-2.399103,'School'),new Array('St Mary and St Michael (63070-66693)',54.070894,-2.280848,'ParishChurch'),new Array('Our Lady Of Victories School (38657-36761)',53.86672,-1.925405,'School'),new Array('Holy Family Catholic High School (38644-36748)',53.876088,-1.916415,'School'),new Array('English Martyrs (57431-74352)',53.820601,-2.412026,'ParishChurch'),new Array('Our Lady of Lourdes (63032-66729)',53.834204,-1.94593,'Church'),new Array('St Anne (63083-66681)',53.869612,-1.909858,'ParishChurch'),new Array('St. Anne School (38663-36767)',53.869612,-1.909858,'School'),new Array('St. Joseph School (38691-36795)',53.857375,-1.915646,'School'),new Array('St Augustine School (38097-36201)',53.815597,-2.426599,'School'),new Array('Our Lady and St Hubert School (38082-36186)',53.789871,-2.396086,'School'),new Array('St Mary`s Hall Preparatory School (39043-37149)',53.848152,-2.467514,'School'),new Array('St Mary`s Hall Preparatory School (39043-74956)',53.848152,-2.467514,'School'),new Array('St Margaret Clitherow (63153-66762)',54.070125,-2.013350500000001,'Church'),new Array('English Martyrs (63013-66662)',53.944762,-1.881115,'ParishChurch'),new Array('Jesuit Community (71037-74956)',53.8462541,-2.469092499999988,'Other'));
// 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';
}
//