strList="
St Joseph`s School (0 miles)
Zoom on map | View full information
St Mary Church (0.4 miles)
Zoom on map | View full information
St Thomas a Becket Church (3.4 miles)
Zoom on map | View full information
St John the Baptist Church (5.5 miles)
Zoom on map | View full information
St John The Baptist Catholic(a) Primary School (5.5 miles)
Zoom on map | View full information
Sacred Heart Church (5.7 miles)
Zoom on map | View full information
Sacred Heart Church (5.7 miles)
Zoom on map | View full information
";
function showResults()
{
document.getElementById("mapList").style.display="block";
}
var records = new Array(new Array('St Joseph`s School (36731-34830)',52.900573,-1.872748,'School'),new Array('St Mary Church (35936-34299)',52.896826,-1.865415,'ParishChurch'),new Array('St Thomas a Becket Church (36462-34563)',52.876692,-1.802435,'ParishChurch'),new Array('St John the Baptist Church (36114-34389)',52.97964400000001,-1.8925304,'ParishChurch'),new Array('St John The Baptist Catholic(a) Primary School (38810-36916)',52.979491,-1.891803,'School'),new Array('Sacred Heart Church (36063-34299)',52.818943,-1.88364,'ParishChurch'),new Array('Sacred Heart Church (36063-34363)',52.818943,-1.88364,'ParishChurch'),new Array('St Thomas` School (36730-34829)',52.955107,-1.986398,'School'),new Array('St Thomas of Canterbury Church (36094-34415)',52.955107,-1.986398,'Church'),new Array('St Thomas of Canterbury Church (36094-34379)',52.955107,-1.986398,'Church'),new Array('Painsley School (36743-34842)',52.981724,-1.988907,'School'),new Array('St Mary`s Church (65108-34525)',52.951453,-2.032762,'Church'),new Array('St Giles Church (36166-34415)',52.985373,-1.987819,'ParishChurch'),new Array('St Giles School (36718-34817)',52.985373,-1.987819,'School'),new Array('The Faber School (36712-34811)',53.00905,-1.905009,'School'),new Array('St Wilfred Church (36112-34388)',53.015448,-1.902833,'Church'),new Array('St Wilfred Church (36112-34415)',53.015448,-1.902833,'Church'),new Array('St Christopher Church (36080-34372)',52.855564,-1.691356,'ParishChurch'),new Array('St Christopher Church (36080-34302)',52.855564,-1.691356,'ParishChurch'),new Array('St Francis de Sales Church (36086-34302)',52.784548,-1.79102,'ParishChurch'),new Array('St John`s School (36719-34818)',52.802279,-2.003058,'School'),new Array('St Francis de Sales Church (36086-34375)',52.784548,-1.79102,'ParishChurch'),new Array('St John the Baptist Church (36225-34445)',52.802972,-2.003577,'ParishChurch'),new Array('St Bede`s School (38813-36919)',52.783882,-1.965975,'School'),new Array('St Mary`s Abbey Church (36219-34445)',52.789936,-1.9894,'Church'),new Array('All Saints Church (55947-62107)',53.016486,-1.738521,'ParishChurch'),new Array('St Filumena Church (36352-34508)',52.981325,-2.071882,'ParishChurch'),new Array('St Filumena`s School (36716-34815)',52.981325,-2.071882,'School'),new Array('SS Joseph and Etheldreda Church (36430-34547)',52.758589,-1.931099,'ParishChurch'),new Array('St Joseph`s School (36726-34825)',52.752953,-1.932471,'School'),new Array('Holy Michael Archangel Church (36116-34390)',52.8836,-2.12859,'ParishChurch'),new Array('Holy Michael Archangel Church (36116-34446)',52.8836,-2.12859,'ParishChurch'),new Array('St Modwen`s School (36713-34812)',52.816093,-1.652806,'School'),new Array('St Augustine`s RC Primary School (38808-36914)',52.972848,-2.10713,'School'),new Array('St Augustine of Canterbury Church (36386-34525)',52.972848,-2.10713,'ParishChurch'),new Array('St Mary`s Abbey Church (36190-34427)',52.917731,-2.13754,'ParishChurch'),new Array('St Mary`s Abbey, OULTON Parish Church (5421-34446)',52.917731,-2.13754,'ParishChurch'),new Array('Our Lady of Perpetual Succour Church (35942-34302)',52.764477,-1.725997,'ParishChurch'),new Array('St Anne Church (36164-34414)',52.791393,-2.080049,'ParishChurch'),new Array('St Anne`s School (36736-34835)',52.791393,-2.080049,'School'),new Array('St Dominic`s Priory School (38814-36920)',52.904339,-2.150626,'School'),new Array('Immaculate Conception and St Dominic Church (36227-34446)',52.905175,-2.150629,'ParishChurch'),new Array('St Patrick Church (36142-34403)',52.815509,-2.115436,'ParishChurch'),new Array('St Wulstan Church (36233-34449)',52.897655,-2.154602,'ParishChurch'),new Array('St Patrick`s School (36728-34827)',52.815748,-2.119146,'School'),new Array('SS Mary and Modwen Church (35948-34305)',52.805506,-1.632805,'ParishChurch'),new Array('St Austin`s School (36727-34826)',52.801093,-2.112253,'School'),new Array('St Austin Church (36243-34454)',52.799994,-2.115558,'ParishChurch'),new Array('Blessed William Howard School (36742-34841)',52.800624,-2.122976,'School'),new Array('St Gregory`s School (36757-34856)',52.983685,-2.137855,'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';
}
//