﻿//Board Meeting Agenda
function mExpandDiv(DivName) {
			var SelectedDiv = document.getElementById(DivName);
			SelectedDiv.style.display = 'block';
		}
		
function mCollapseDiv(DivName) {
			var SelectedDiv = document.getElementById(DivName);
			SelectedDiv.style.display = 'none';
		}
		
		
function mquerySt() {
if(window.location != null && window.location.search.length > 1)
{
            hu = window.location.search.substring(1);
            ft = hu.split("=");
            return ft[1];
}
         }
         
function CollapseCurrentSelected() {
		
		if(mquerySt()!= null)
		{
		var tt='divMeeting'+mquerySt();
			mExpandDiv(tt);
		}
		}
		
function LinkToBack(loc) {
			//window.opener = null;
            //history.back();
            window.location="MeetingAgenda.aspx" + '?Year=' +loc;
		}
//End of Board Meeting Agenda