strList="
St Winefride (0 miles)
Zoom on map | View full information
God The Holy Ghost Church (12 miles)
Zoom on map | View full information
St Mary`s School (12.3 miles)
Zoom on map | View full information
Our Lady & St Oswald School (14.1 miles)
Zoom on map | View full information
Our Lady Help of Christians & St Oswald Church (14.1 miles)
Zoom on map | View full information
St Walburgh`s Church (15.6 miles)
Zoom on map | View full information
St Winefride`s School (17.1 miles)
Zoom on map | View full information
";
function showResults()
{
document.getElementById("mapList").style.display="block";
}
var records = new Array(new Array('St Winefride (60147-65126)',52.66035,-3.154864,'ParishChurch'),new Array('God The Holy Ghost Church (60103-65108)',52.517537,-3.316956,'ParishChurch'),new Array('St Mary`s School (38467-36571)',52.515671,-3.323016,'School'),new Array('Our Lady and St Oswald School (38133-36237)',52.856279,-3.061473,'School'),new Array('Our Lady Help of Christians and St Oswald Church (59612-32800)',52.856279,-3.061473,'ParishChurch'),new Array('St Walburgh`s Church (59789-64975)',52.4826821,-2.925020099999983,'Other'),new Array('St Winefride`s School (38212-36316)',52.705631,-2.754508,'School'),new Array('Cathedral Church of Our Lady Help of Christians and Saint Peter of Alcantara (63445-32798)',52.7056304,-2.7540021,'Cathedral'),new Array('St Milburga Church (59752-32805)',52.5387843,-2.798662000000036,'ParishChurch'),new Array('St Mary`s Primary School (38190-36294)',52.718675,-2.737411,'School'),new Array('St Winefride Church (59803-32804)',52.710311,-2.724748,'ParishChurch'),new Array('St Winefride Church (63443-32804)',52.710311,-2.724748,'ParishChurch'),new Array('Our Lady of Pity Church (59622-32799)',52.729223,-2.722278,'ParishChurch'),new Array('Our Lady of Pity Church (63262-32799)',52.729223,-2.722278,'ParishChurch'),new Array('The Sacred Heart, Chirk Church (60075-65095)',52.93071,-3.059842,'ParishChurch'),new Array('St Michael Church (59748-32801)',52.90603,-2.900114,'ParishChurch'),new Array('Our Lady and Saint Richard Gwyn, Llanidloes Church (60152-65128)',52.446347,-3.546563,'ParishChurch'),new Array('Our Lady Of Perpetual Succour And St Nicholas Church (45877-53310)',52.3442983,-3.0516739,'ParishChurch'),new Array('St Mary the Virgin Church (60134-65121)',52.989632,-3.038044,'ParishChurch'),new Array('Y Groes Church (60101-65107)',52.989632,-3.038044,'ParishChurch'),new Array('Our Lady And The Welsh Martyrs (60114-65113)',52.971404,-2.937092,'ParishChurch'),new Array('Hawkstone Hall Church (59584-64964)',52.865213,-2.623272,'Other'),new Array('St Patrick`s Primary School (38193-36297)',52.705683,-2.524958,'School'),new Array('St Josephs Catholic and Anglican High School (38466-36570)',53.035222,-2.994474,'School'),new Array('All Saints and St Paul Church (63212-64960)',52.701972,-2.516344,'ParishChurch'),new Array('St Patrick Church (59756-32807)',52.702635,-2.516885,'ParishChurch'),new Array('Blessed Robert Johnson School (38218-36322)',52.70937,-2.518622,'School'),new Array('Diocese of Wrexham Curial Office (344-876)',53.038458,-2.995607,'Other'),new Array('Bishop`s House (4796-876)',53.038458,-2.995607,'Other'),new Array('St Peter Church (59767-32806)',52.375343,-2.70976,'ParishChurch'),new Array('St Mary`s School (38465-36569)',53.043809,-2.996342,'School'),new Array(' The Cathedral Church Of Our Lady Of Sorrows (60043-65084)',53.047312,-2.99887,'ParishChurch'),new Array('St Anne`s School (38464-36568)',53.045337,-2.971392,'School'),new Array('Assumption Of Our Lady And St Therese Church (45876-53304)',52.265728,-2.996505,'ParishChurch'),new Array('Moor Park School (38132-36236)',52.339455,-2.731745,'School'),new Array('St Francis Of Assisi Church (45878-53317)',52.302567,-3.51019,'ParishChurch'),new Array('St George Church (59696-32802)',52.970925,-2.682955,'ParishChurch'),new Array('St Mair Church (60150-65127)',52.591264,-3.846229,'ParishChurch'),new Array('St Mary and The Good Shepherd Church (59583-32812)',52.6367393,-2.448755000000006,'ParishChurch'),new Array('St Luke`s Primary School (38180-36284)',52.711446,-2.450587,'School'),new Array('St Mary`s Primary School (38188-36292)',52.638557,-2.448404,'School'),new Array('St Joseph Church (63363-32803)',53.024391,-2.770079,'ParishChurch'),new Array('St Joseph Church (59723-32803)',53.024391,-2.770079,'ParishChurch'));
// 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';
}
//