strList="
St Peter Church (0 miles)
Zoom on map | View full information
St Peter`s Catholic Primary School (0.2 miles)
Zoom on map | View full information
St Martin`s Catholic Secondary School (2.5 miles)
Zoom on map | View full information
Ss Peter and Paul Church (2.8 miles)
Zoom on map | View full information
St Peter`s Catholic Primary School (3.5 miles)
Zoom on map | View full information
Our Lady and St Gregory Church (3.5 miles)
Zoom on map | View full information
St Joseph`s School (4.6 miles)
Zoom on map | View full information
";
function showResults()
{
document.getElementById("mapList").style.display="block";
}
var records = new Array(new Array('St Peter Church (56004-62184)',52.54411,-1.364715,'ParishChurch'),new Array('St Peter`s Catholic Primary School (37839-35943)',52.542266,-1.362751,'School'),new Array('St Martin`s Catholic Secondary School (37850-35954)',52.572301,-1.400621,'School'),new Array('Ss Peter and Paul Church (55988-62163)',52.573786,-1.321008,'ParishChurch'),new Array('St Peter`s Catholic Primary School (37838-35942)',52.578817,-1.303295,'School'),new Array('Our Lady and St Gregory Church (56040-62243)',52.556864,-1.44458,'Other'),new Array('St Joseph`s School (36816-34915)',52.518443,-1.466506,'School'),new Array('Our Lady of the Angels School (36803-34902)',52.518443,-1.466506,'School'),new Array('Our Lady of the Angels Church (36290-34477)',52.517219,-1.466256,'ParishChurch'),new Array('St Thomas More School (36819-34918)',52.517202,-1.48058,'School'),new Array('Our Lady of the Sacred Heart Church (36257-34461)',52.481665,-1.435676,'ParishChurch'),new Array('St Anne`s School (36815-34914)',52.534773,-1.502737,'School'),new Array('St Francis School (36797-34896)',52.482648,-1.471254,'School'),new Array('St Francis of Assisi Church (36031-34347)',52.478378,-1.469435,'ParishChurch'),new Array('St Anne Church (36217-34441)',52.536851,-1.516101,'ParishChurch'),new Array('St Joseph Church (36100-34464)',52.444414,-1.313891,'ParishChurch'),new Array('St Joseph Church (36100-34382)',52.444414,-1.313891,'ParishChurch'),new Array('St Pius X Church (56051-62261)',52.574026,-1.200891,'ParishChurch'),new Array('St Benedict`s School (36796-34895)',52.572059,-1.53488,'School'),new Array('St Benedict Church (36025-34344)',52.575108,-1.546697,'ParishChurch'),new Array('St Patrick Church (36422-34543)',52.4397058,-1.458160200000066,'ParishChurch'),new Array('St Patrick`s School (36649-34748)',52.438195,-1.45809,'School'),new Array('Cardinal Wiseman School (36663-34762)',52.43614,-1.452982,'School'),new Array('St Peter and St Paul School (36825-34924)',52.42655,-1.445894,'School'),new Array('Our Lady of Victories and St Alphonsus Church (56036-62235)',52.458576,-1.203821,'ParishChurch'),new Array('Good Shepherd School (36651-34750)',52.435067,-1.488606,'School'),new Array('Holy Family Church (36221-34443)',52.445485,-1.515969,'ParishChurch'),new Array('St Joseph Church (36021-34342)',52.501864,-1.575043,'ParishChurch'),new Array('St Joseph Church (36021-34441)',52.501864,-1.575043,'ParishChurch'),new Array('St John Fisher Church (36265-34465)',52.42049,-1.461234,'ParishChurch'),new Array('St John Fisher School (36648-34747)',52.421417,-1.465413,'School'),new Array('Holy Family School (36660-34759)',52.444659,-1.524953,'School'),new Array('St Elizabeth`s School (36645-34744)',52.429124,-1.494764,'School'),new Array('St John Bosco Church (56019-62211)',52.591518,-1.146427,'Church'),new Array('St Elizabeth Church (36170-34417)',52.429124,-1.494764,'ParishChurch'),new Array('St Vladimir the Great Church (36394-34529)',52.4272283,-1.495175,'ParishChurch'),new Array('Most Blessed Sacrament Church (56025-62219)',52.626016,-1.172215,'ParishChurch'),new Array('St Edward the Confessor Church (56018-62206)',52.605867,-1.151479,'ParishChurch'),new Array('St Mary Church (56021-62211)',52.576047,-1.134184,'ParishChurch'),new Array('St Gregory`s School (36655-34754)',52.409643,-1.454265,'School'),new Array('Mother of God Church (56015-62202)',52.64045,-1.185938,'ParishChurch'),new Array('Cardinal Newman School (36662-34761)',52.443066,-1.533709,'School'),new Array('Holy Cross Catholic Primary School (37830-35934)',52.59341,-1.13083,'School'),new Array('St Augustine`s Church (65103-34430)',52.427415,-1.524756,'Church'),new Array('Sacred Heart School (36644-34743)',52.409642,-1.48008,'School'),new Array('Sacred Heart Church (36384-34524)',52.409789,-1.478784,'ParishChurch'),new Array('St Augustine`s School (36654-34753)',52.427415,-1.524756,'School'),new Array('Christ The King Catholic Primary School (38914-37020)',52.636624,-1.164464,'School'),new Array('St Stanislaus Kosta Church (36168-34416)',52.417119,-1.506649,'ParishChurch'),new Array('St Mary and St Benedict`s School (36642-34741)',52.413931,-1.496893,'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';
}
//