strList="
St Francis of Assisi Church (0 miles)
Zoom on map | View full information
St George and St Teresa Church (2.9 miles)
Zoom on map | View full information
St George and St Teresa School (3.1 miles)
Zoom on map | View full information
St Augustine`s School (4.8 miles)
Zoom on map | View full information
St Augustine of England Church (4.9 miles)
Zoom on map | View full information
St Augustine of England Church (4.9 miles)
Zoom on map | View full information
St Francis of Assisi Church (5.1 miles)
Zoom on map | View full information
";
function showResults()
{
document.getElementById("mapList").style.display="block";
}
var records = new Array(new Array('St Francis of Assisi Church (35940-34301)',52.349505,-1.696608,'ParishChurch'),new Array('St George and St Teresa Church (36350-34507)',52.374903,-1.750843,'ParishChurch'),new Array('St George and St Teresa School (36681-34780)',52.379675,-1.74989,'School'),new Array('St Augustine`s School (36804-34903)',52.363787,-1.585649,'School'),new Array('St Augustine of England Church (36199-34482)',52.35487639999999,-1.5808466,'ParishChurch'),new Array('St Augustine of England Church (36199-34432)',52.35487639999999,-1.5808466,'ParishChurch'),new Array('St Francis of Assisi Church (36300-34482)',52.339651,-1.57632,'ParishChurch'),new Array('Holy Ghost and Mary Immaculate Church (36416-34540)',52.423506,-1.713474,'ParishChurch'),new Array('St Mary`s School (36802-34901)',52.290829,-1.774068,'School'),new Array('Crackley Hall School (38817-36923)',52.355053,-1.571812,'School'),new Array('St Peter`s School (36687-34786)',52.405436,-1.78886,'School'),new Array('St Augustine`s School (36680-34779)',52.405436,-1.78886,'School'),new Array('St Charles Borromeo Church (36404-34534)',52.277499,-1.632184,'ParishChurch'),new Array('St Augustine Church (36420-34542)',52.41379569999999,-1.7802562,'ParishChurch'),new Array('Our Lady of the Assumption Church (36296-34480)',52.402588,-1.582964,'ParishChurch'),new Array('Our Lady of the Assumption School (36647-34746)',52.404637,-1.585252,'School'),new Array('Our Lady of the Wayside Church (36356-34510)',52.398359,-1.820771,'ParishChurch'),new Array('Our Lady of the Wayside School (36678-34777)',52.398359,-1.820771,'School'),new Array('St Mary Immaculate School (36808-34907)',52.287605,-1.586111,'School'),new Array('St Joseph the Worker Church (36308-34486)',52.383675,-1.551686,'ParishChurch'),new Array('St Mary Immaculate Church (36428-34546)',52.278938,-1.591263,'ParishChurch'),new Array('St John Vianney School (36650-34749)',52.40931,-1.564921,'School'),new Array('St John Vianney Church (36442-34553)',52.4097877,-1.565137199999981,'ParishChurch'),new Array('Olton Friary (71360-34540)',52.4262418,-1.8095291,'Other'),new Array('Bishop Ullathorne School (36661-34760)',52.379956,-1.536034,'School'),new Array('Trinity School (36818-34917)',52.295761,-1.552134,'School'),new Array('Our Lady of Compassion School (36682-34781)',52.431142,-1.81224,'School'),new Array('St Andrew`s School (36679-34778)',52.443239,-1.788797,'School'),new Array('All Souls School (36658-34757)',52.406106,-1.53795,'School'),new Array('St Aidan Church (36090-34377)',52.374454,-1.876509,'ParishChurch'),new Array('St Ambrose Barlow School (36624-34723)',52.424049,-1.836475,'School'),new Array('All Souls Church (36229-34447)',52.405735,-1.537174,'ParishChurch'),new Array('St Aidan`s Church (65106-34510)',52.374454,-1.876509,'Church'),new Array('St Peter`s School (36805-34904)',52.289269,-1.537949,'School'),new Array('St Ambrose Barlow Church (35972-34317)',52.430692,-1.830171,'ParishChurch'),new Array('St Peter Church (36434-34549)',52.2882,-1.535805,'ParishChurch'),new Array('St Thomas More School (36605-34704)',52.455564,-1.783499,'School'),new Array('St Thomas More Church (36000-34331)',52.455564,-1.783499,'ParishChurch'),new Array('Our Lady Church (36211-34438)',52.30251,-1.517236,'ParishChurch'),new Array('St Thomas More School (36657-34756)',52.384737,-1.51105,'School'),new Array('St Thomas More Church (36360-34512)',52.385706,-1.508601,'ParishChurch'),new Array('Our Lady and St Teresa`s School (36809-34908)',52.311874,-1.507629,'School'),new Array('Sacred Heart and Holy Souls Church (36432-34548)',52.445733,-1.818549,'ParishChurch'),new Array('St Patrick`s School (36806-34905)',52.277385,-1.5358,'School'),new Array('Christ the King (Infant School) School (36643-34742)',52.422602,-1.535425,'School'),new Array('Our Lady of Lourdes Church (36016-34339)',52.422227,-1.860319,'ParishChurch'),new Array('Our Lady of Lourdes School (36594-34693)',52.422227,-1.860319,'School'),new Array('Christ the King and Our Lady of Lourdes Church (36196-34430)',52.422602,-1.535425,'ParishChurch'),new Array('St Anne Church (36245-34455)',52.470683,-1.726116,'ParishChurch'),new Array('Archbishop Ilsley School (36640-34739)',52.444866,-1.821833,'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';
}
//