strList="
St John`s Catholic Primary School (0 miles)
Zoom on map | View full information
St John the Evangelist (0 miles)
Zoom on map | View full information
St Anne`s Catholic Primary School (2.7 miles)
Zoom on map | View full information
St Bede`s Catholic High School (2.8 miles)
Zoom on map | View full information
Our Lady Queen Of Peace RC High School (2.9 miles)
Zoom on map | View full information
Pontville Residential School (3 miles)
Zoom on map | View full information
Our Lady & All Saints RC Primary School (3.2 miles)
Zoom on map | View full information
";
function showResults()
{
document.getElementById("mapList").style.display="block";
}
var records = new Array(new Array('St John`s Catholic Primary School (37563-35667)',53.591458,-2.844579,'School'),new Array('St John the Evangelist (52890-57734)',53.59159469999999,-2.8440669,'ParishChurch'),new Array('St Anne`s Catholic Primary School (37564-35668)',53.564279,-2.892609,'School'),new Array('St Bede`s Catholic High School (37640-35744)',53.56339,-2.893708,'School'),new Array('Our Lady Queen Of Peace RC High School (37637-35741)',53.56268,-2.791661,'School'),new Array('Pontville Residential School (37657-35761)',53.559836,-2.894146,'School'),new Array('Our Lady and All Saints RC Primary School (37566-35670)',53.591519,-2.766139,'School'),new Array('Our Lady and All Saints (52863-57720)',53.592828,-2.765211,'ParishChurch'),new Array('St Richard`s Catholic Primary School (37568-35672)',53.549617,-2.806843,'School'),new Array('St Mary Queen of Apostles (72544-57726)',53.55956519999999,-2.7797514,'ParishChurch'),new Array('St Mary`s RC Primary School (37565-35669)',53.612282,-2.919348,'School'),new Array('St Elizabeth (52885-77171)',53.612282,-2.919348,'ParishChurch'),new Array('St James RC Primary School (37547-35651)',53.564809,-2.772556,'School'),new Array('St Edmund`s Catholic Primary School (37548-35652)',53.550156,-2.787986,'School'),new Array('St Mary`s Public Oratory (52879-57728)',53.560445,-2.921185,'ParishChurch'),new Array('St Anne (52883-57730)',53.560445,-2.921185,'ParishChurch'),new Array('St Mary`s Public Oratory (52879-57733)',53.560445,-2.921185,'ParishChurch'),new Array('St Peter`s Catholic High School (38893-36999)',53.564227,-2.761701,'School'),new Array('St John`s Catholic Primary School (37546-35650)',53.552137,-2.765216,'School'),new Array('St Peter`s and St Paul`s RC Primary School (37560-35664)',53.625152,-2.745187,'School'),new Array('St Francis of Assisi (72543-57726)',53.54050239999999,-2.7613083,'ParishChurch'),new Array('St Matthew`s Catholic Primary School (37542-35646)',53.541786,-2.760502,'School'),new Array('St Teresa (52873-57725)',53.548462,-2.726105,'ParishChurch'),new Array('St Teresa`s Catholic Primary School (37569-35673)',53.548462,-2.726105,'School'),new Array('St Joseph`s Catholic Primary School (38895-37001)',53.598564,-2.697483,'School'),new Array('St Gregory`s Catholic Primary School (37501-35605)',53.52798,-2.94558,'School'),new Array('St Gregory`s Parish House (52888-57733)',53.524553,-2.943513,'Other'),new Array('St Agnes (52827-57702)',53.64128,-2.719667,'ParishChurch'),new Array('St Gregory the Great (52889-57733)',53.5245397,-2.9433843,'ParishChurch'),new Array('Corpus Christi Catholic Primary School (37444-35548)',53.506796,-2.790484,'School'),new Array('St Bernadette`s Catholic Primary School (37527-35631)',53.571956,-2.688453,'School'),new Array('St John Rigby College School (39098-37204)',53.553952,-2.697881,'School'),new Array('Corpus Christi (52913-77243)',53.503935,-2.789526,'ParishChurch'),new Array('Corpus Christi (52913-57745)',53.503935,-2.789526,'ParishChurch'),new Array('St Joseph (52869-57723)',53.587652,-2.684229,'ParishChurch'),new Array('St Peter`s and St Paul`s Catholic Primary School (37419-35523)',53.497945,-2.88018,'School'),new Array('Sacred Heart (53019-77189)',53.587652,-2.684229,'ParishChurch'),new Array('Holy Family (52805-57691)',53.645588,-2.97898,'ParishChurch'),new Array('Our Lady Help of Christians (52825-57701)',53.688829,-2.833338,'ParishChurch'),new Array('St John Bosco Catholic Primary School (37507-35611)',53.51906,-2.953828,'School'),new Array('Our Lady`s Parish House (74023-57701)',53.6888285,-2.8333376,'Other'),new Array('Holy Family Catholic Primary School (37480-35584)',53.648924,-2.978876,'School'),new Array('St Bernadette (72524-74279)',53.5714104,-2.6829008,'ParishChurch'),new Array('Christ The King Rc School (37623-35727)',53.625539,-3.002376,'School'),new Array('St James`s Catholic Primary School (37520-35624)',53.529026,-2.714654,'School'),new Array('St George (52887-57732)',53.506913,-2.934949,'ParishChurch'),new Array('St James (52867-57722)',53.529026,-2.714654,'ParishChurch'),new Array('Ss Peter and Paul (52901-57739)',53.49442020000001,-2.892002400000024,'ParishChurch'),new Array('Our Lady of the Annunciation (St Marie`s) (52871-74279)',53.5855372,-2.672782200000029,'ParishChurch'),new Array('Maricourt Catholic High School (37625-35729)',53.507795,-2.938225,'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';
}
//