strList="
St Vincent`s Catholic Primary School (0 miles)
Zoom on map | View full information
St Joseph (0.6 miles)
Zoom on map | View full information
St Joseph`s Catholic Primary School (0.7 miles)
Zoom on map | View full information
St Gregory`s Catholic High School (1.6 miles)
Zoom on map | View full information
Sacred Heart RC Primary School (1.8 miles)
Zoom on map | View full information
Sacred Heart (2.1 miles)
Zoom on map | View full information
St John Fisher Hall (2.2 miles)
Zoom on map | View full information
";
function showResults()
{
document.getElementById("mapList").style.display="block";
}
var records = new Array(new Array('St Vincent`s Catholic Primary School (37710-35814)',53.379965,-2.65545,'School'),new Array('St Joseph (52963-57770)',53.388064,-2.658958,'ParishChurch'),new Array('St Joseph`s Catholic Primary School (37706-35810)',53.389737,-2.658593,'School'),new Array('St Gregory`s Catholic High School (37635-35739)',53.390927,-2.620929,'School'),new Array('Sacred Heart RC Primary School (37540-35644)',53.389143,-2.614828,'School'),new Array('Sacred Heart (52959-57768)',53.38918820000001,-2.6073548,'ParishChurch'),new Array('St John Fisher Hall (52948-57762)',53.376011,-2.708722,'Other'),new Array('St John Fisher (52949-57762)',53.376011,-2.708722,'ParishChurch'),new Array('St John Fisher Catholic Primary School (37711-35815)',53.372486,-2.710542,'School'),new Array('St Alban`s Catholic Primary School (37541-35645)',53.395127,-2.603004,'School'),new Array('St Joseph`s Family Centre (72617-57769)',53.3869565,-2.5971743,'Other'),new Array('St Alban (72519-57768)',53.3922292,-2.5961204,'ParishChurch'),new Array('St Augustine`s School (38156-36260)',53.339581,-2.690125,'School'),new Array('St Augustine Church (63309-32825)',53.340452,-2.688712,'ParishChurch'),new Array('St Augustine Church (59669-32825)',53.340452,-2.688712,'ParishChurch'),new Array('St Bede`s Catholic Infant School (37704-35808)',53.371131,-2.730945,'School'),new Array('St Gerard`s RC Primary and Nursery School (37713-35817)',53.362676,-2.727434,'School'),new Array('St Bede (52845-57711)',53.371131,-2.730945,'ParishChurch'),new Array('St Bede`s Catholic Junior School (37703-35807)',53.371131,-2.730945,'School'),new Array('St Bede (52947-57762)',53.371131,-2.730945,'ParishChurch'),new Array('St Benedict (52961-57769)',53.400048,-2.585988,'ParishChurch'),new Array('St Benedict`s Catholic Primary School (37697-35801)',53.400177,-2.579779,'School'),new Array('St Paul Of The Cross Catholic Primary School (37699-35803)',53.429672,-2.657133,'School'),new Array('St Peter`s and St Paul`s Catholic High School (37636-35740)',53.373386,-2.739972,'School'),new Array('Holy Spirit Church (59598-32824)',53.335684,-2.695513,'ParishChurch'),new Array('St Monica Church (59754-32822)',53.365259,-2.575307,'ParishChurch'),new Array('Our Lady`s School (38138-36242)',53.379383,-2.571168,'School'),new Array('St Paul of the Cross (52969-57773)',53.430071,-2.661534,'ParishChurch'),new Array('St Monica`s School (38192-36296)',53.364659,-2.572954,'School'),new Array('St Stephen`s Catholic Primary School (37698-35802)',53.413974,-2.589038,'School'),new Array('Holy Family (52941-57759)',53.369979,-2.74218,'ParishChurch'),new Array('St Stephen, First Martyr (52971-57774)',53.413974,-2.589038,'ParishChurch'),new Array('St Theresa of the Child Jesus (52939-57758)',53.416396,-2.722438,'ParishChurch'),new Array('St Martin de Porres Church (59732-32828)',53.325438,-2.662196,'ParishChurch'),new Array('St Augustine Church (59602-32821)',53.383572,-2.563512,'ParishChurch'),new Array('St Augustine Church (63242-32821)',53.383572,-2.563512,'ParishChurch'),new Array('St Martin de Porres Church (63372-32828)',53.325438,-2.662196,'ParishChurch'),new Array('St Augustine`s School (38155-36259)',53.383572,-2.563512,'School'),new Array('Cardinal Newman School (38220-36324)',53.386907,-2.56339,'School'),new Array('St Theresa`s Catholic Primary School (37472-35576)',53.417109,-2.721969,'School'),new Array('St Martin`s School (38183-36287)',53.324324,-2.662074,'School'),new Array('St Edward`s School (38163-36267)',53.341623,-2.723216,'School'),new Array('Holy Spirit School (38129-36233)',53.331845,-2.710917,'School'),new Array('St Oswald (52967-57769)',53.402076,-2.564252,'ParishChurch'),new Array('St Oswald`s RC Primary School (37701-35805)',53.402076,-2.564252,'School'),new Array('St Anne`s Catholic Primary School (37458-35562)',53.431852,-2.708311,'School'),new Array('Our Lady Church (59600-32826)',53.32123,-2.687847,'ParishChurch'),new Array('St Bartholomew`s RC Primary School (37445-35549)',53.406874,-2.750647,'School'),new Array('Holy Family Catholic Primary School (37398-35502)',53.39137,-2.758915,'School'),new Array('Our Lady`s School (38139-36243)',53.32123,-2.687847,'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';
}
//