strList="
 St Joseph and St Laurence Parish Centre (0 miles)
 St Joseph and St Laurence Parish Centre (0 miles)
Zoom on map | View full information
 St Vincent`s Diocesan Offices (0 miles)
 St Vincent`s Diocesan Offices (0 miles)
Zoom on map | View full information
 St John Henry Newman (0 miles)
 St John Henry Newman (0 miles)
Zoom on map | View full information
 St James URC (0 miles)
 St James URC (0 miles)
Zoom on map | View full information
 St Amand and St John the Baptist (0 miles)
 St Amand and St John the Baptist (0 miles)
Zoom on map | View full information
 Mass Centre: Rowton Methodist Church (0 miles)
 Mass Centre: Rowton Methodist Church (0 miles)
Zoom on map | View full information
 St Paul (0 miles)
 St Paul (0 miles)
Zoom on map | View full information
";
function showResults()
{
document.getElementById("mapList").style.display="block";
}
var records = new Array(new Array('St Joseph and St Laurence Parish Centre (72532-57736)',-500,-500,'Other'),new Array('St Vincent`s Diocesan Offices (78511-879)',-500,-500,'Other'),new Array('St John Henry Newman (78381-32820)',-500,-500,'ParishChurch'),new Array('St James URC (75850-37488)',-500,-500,'Church'),new Array('St Amand and St John the Baptist (71403-9800)',-500,-500,'Church'),new Array('Mass Centre: Rowton Methodist Church (79113-32717)',-500,-500,'Church'),new Array('St Paul (78733-32812)',-500,-500,'Church'),new Array('St Robert`s Parish Centre (72590-57674)',-500,-500,'Other'),new Array('St Oswald`s Parish Centre (72569-57769)',-500,-500,'Other'),new Array('Lancaster Diocese Pastoral Centre (78512-880)',-500,-500,'Other'),new Array('St Elizabeth`s Parish House (77592-57675)',-500,-500,'Other'),new Array('Our Lady of Walsingham Parish Centre (72491-57677)',-500,-500,'Other'),new Array('Mass Centre - Albrighton (78944-32809)',-500,-500,'ParishChurch'),new Array('Our Lady of the Rosary and St Luke (78734-32807)',-500,-500,'Church'),new Array('St Mary`s Parish Centre (72497-57718)',-500,-500,'Other'),new Array('St Elizabeth`s Parish Centre (72538-57731)',-500,-500,'Other'),new Array('Blessed Trinity Church (73528-76906)',-500,-500,'Church'),new Array('St Elizabeth`s Parish Centre (72538-57675)',-500,-500,'Other'),new Array('Parish Community Centre (72603-57705)',-500,-500,'Other'),new Array('Jackson House (73213-75690)',-500,-500,'Other'),new Array('Our Lady of Mount Carmel (72486-57642)',-500,-500,'ParishChurch'),new Array('Our Lady (72540-57733)',-500,-500,'ParishChurch'),new Array('Assomption de Notre-Dame Church (73525-76903)',-500,-500,'Church'),new Array('Ss Peter and Paul Parish House (72531-57739)',-500,-500,'Other'),new Array('Chinese Martyrs Catholic Church (73531-76909)',-500,-500,'Church'),new Array('St Robert`s Parish Centre (72590-57675)',-500,-500,'Other'),new Array('Christ the King Church (73532-76910)',-500,-500,'Church'),new Array('Sisters of Our Lady of Charity of the Good Shepherd (76956-76419)',-500,-500,'Other'),new Array('St Wilfrid`s Parish House (72620-57788)',-500,-500,'Other'),new Array('Holy Family Club Mr John Brennan (72571-57759)',-500,-500,'Other'),new Array('Guardian Angels Church (73540-76918)',-500,-500,'Church'),new Array('St Mary`s Parochial Club (72605-57747)',-500,-500,'Other'),new Array('Croatian Martyrs Church (73536-76914)',-500,-500,'Church'),new Array('Parish Centre (72557-57707)',-500,-500,'Other'),new Array('Corpus Christi Church (73534-76912)',-500,-500,'Church'),new Array('Annunciation of the Blessed Virgin Mary Church (73524-76902)',-500,-500,'Church'),new Array('St Patrick (71541-71428)',-500,-500,'ParishChurch'),new Array('St Benedict`s Parish Centre (72568-57769)',-500,-500,'Other'),new Array('Holy Cross Church (73542-76920)',-500,-500,'Church'),new Array('Chapel of St. Joseph Church (73530-76908)',-500,-500,'Church'),new Array('Holy Angels Church (73541-76919)',-500,-500,'Church'),new Array('St Mary (72483-57718)',-500,-500,'ParishChurch'),new Array('Epiphany of Our Lord Church (73537-76915)',-500,-500,'Church'),new Array('Holy Family Church (73547-76925)',-500,-500,'Church'),new Array('Office 204, Group First House (73214-75689)',-500,-500,'Other'),new Array('St Teresa of Lisieux Church (71626-76047)',-500,-500,'ParishChurch'),new Array('Holy Family Church (73545-76923)',-500,-500,'Church'),new Array('Holy Spirit Church (73553-76931)',-500,-500,'Church'),new Array('Immaculate Heart of Mary Church (73559-76937)',-500,-500,'Church'),new Array('Mount Carmel Presbytery (76597-74964)',-500,-500,'Other'));
//    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';
}
    //