strList="
 The Immaculate Conception (0 miles)
Zoom on map | View full information
 St Joseph (2.7 miles)
Zoom on map | View full information
 Holy Cross Hospital (3 miles)
Zoom on map | View full information
 Holy Cross Chapel (3 miles)
Zoom on map | View full information
 Holy Cross Chapel (3 miles)
Zoom on map | View full information
 The Sacred Heart (3.2 miles)
Zoom on map | View full information
 St Anselm (3.4 miles)
Zoom on map | View full information
";
function showResults()
{
document.getElementById("mapList").style.display="block";
}
var records = new Array(new Array('The Immaculate Conception (933-9824)',51.083878,-0.804743,'ParishChurch'),new Array('St Joseph (885-9808)',51.112237,-0.761169,'ParishChurch'),new Array('Holy Cross Hospital (71068-75033)',51.0905876,-0.7360429,'Other'),new Array('Holy Cross Chapel (65960-75419)',51.090623,-0.736386,'Other'),new Array('Holy Cross Chapel (65960-70935)',51.090623,-0.736386,'Other'),new Array('The Sacred Heart (814-9782)',51.112658,-0.863774,'ParishChurch'),new Array('St Anselm (34845-33724)',51.122065,-0.75519,'ParishChurch'),new Array('St Anselm (33705-70935)',51.122065,-0.75519,'ParishChurch'),new Array('Our Lady of Lourdes (34831-33717)',51.091464,-0.7161,'ParishChurch'),new Array('Our Lady of Lourdes (34467-70935)',51.091464,-0.7161,'ParishChurch'),new Array('St Agnes (972-9837)',51.033323,-0.874543,'ParishChurch'),new Array('De La Salle Brothers Community House (71060-75309)',51.027632,-0.876538,'Other'),new Array('More House School (38748-36854)',51.178821,-0.798599,'Other'),new Array('St Martha`s Convent (71083-75070)',50.9866695,-0.7422678,'Other'),new Array('Convent of Mercy (71084-75071)',50.9866695,-0.7422678,'Other'),new Array('The Divine Motherhood and St Francis of Assisi (34875-33748)',50.984168,-0.742142,'ParishChurch'),new Array('The Divine Motherhood and St Francis of Assisi (34875-33739)',50.984168,-0.742142,'ParishChurch'),new Array('St Teresa Of Avila (65959-70935)',51.115262,-0.633948,'Church'),new Array('St Laurence (969-9837)',51.007458,-0.939737,'ParishChurch'),new Array('St Joan of Arc (34811-33707)',51.210991,-0.790318,'ParishChurch'),new Array('St Polycarp`s Catholic Primary School (38766-36872)',51.211617,-0.789142,'School'),new Array('St Joseph (33513-33712)',51.1723389,-0.6506665,'Church'),new Array('St Joseph (34877-33740)',51.172593,-0.649706,'ParishChurch'),new Array('All Hallows Catholic School (1152-10249)',51.234716,-0.775057,'School'),new Array('The Holy Family (34837-33677)',51.237945,-0.792447,'ParishChurch'),new Array('The Holy Family (34837-33720)',51.237945,-0.792447,'ParishChurch'),new Array('St Edmund, King and Martyr (34821-33712)',51.183814,-0.614953,'ParishChurch'),new Array('Clareville Community (71221-75061)',51.1882843,-0.618454,'Other'),new Array('St Edmund`s Catholic Primary School (38770-36876)',51.17726,-0.605235,'School'),new Array('Clareville Community (71221-75587)',51.1882843,-0.618454,'Other'),new Array('The Sacred Heart (34893-33748)',50.986086,-0.606883,'ParishChurch'),new Array('St Joseph (793-9774)',51.2483356,-0.769565599999964,'ParishChurch'),new Array('St Mary (796-9774)',51.2472164,-0.747129599999994,'Church'),new Array('St John`s (C of E) (65954-70930)',51.1953076,-0.6038355,'Other'),new Array('St John`s (C of E) (65954-33712)',51.1953076,-0.6038355,'Other'),new Array('St Anthony and St George (65949-33748)',50.95151,-0.630553,'Other'),new Array('The Holy Angels (34751-33677)',51.248423,-0.718226,'ParishChurch'),new Array('RC Bishopric of the Forces (65229-76446)',51.258694,-0.748251,'Other'),new Array('RC Bishopric of the Forces (65229-10649)',51.258694,-0.748251,'Other'),new Array('St Thomas More (33405-70915)',51.193333,-0.55655,'ParishChurch'),new Array('Our Lady Help of Christians (871-9803)',51.279032,-0.743841,'ParishChurch'),new Array('Our Lady  (874-9805)',51.282459,-0.8353,'ParishChurch'),new Array('Salesian College (1159-10256)',51.279997,-0.743313,'School'),new Array('Forces of England and Wales (9669-10649)',51.290376,-0.747633,'Other'),new Array('Rydes Hill Preparatory And Nursery School (38782-36888)',51.251536,-0.602115,'School'),new Array('St Cuthbert Mayne Catholic Primary School (38771-36877)',51.14333,-0.482399,'School'),new Array('St Joseph`s Catholic Primary School (38767-36873)',51.251192,-0.601108,'School'),new Array('Jesus Christ the Redeemer of Mankind (6219-70915)',51.14333,-0.482399,'ParishChurch'),new Array('Greccio Convent (71074-75062)',51.2348258,-0.5652896,'Other'),new Array('Our Lady and St Dominic Savio (873-9804)',51.294862,-0.761897,'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';
}
    //