 function displayMembers(x)
 {
	var qs = ""
	if (x != null)
		qs = x
			//alert("committeeMembers.asp?" + submitForm(null) + "&" + qs)
		 window.location = "committeeMembers.asp?" + submitForm(null) + "&" + qs
 }
 
 function showDetails(x)
{
	AJAXGET("getMemberDetails.asp?member_Number=" + x, "updateMemberDisplay('" + x + "')")
}

 function hideDetails(x)
{
	AJAXGET("getMemberGeneral.asp?member_Number=" + x, "updateMemberDisplay('" + x + "')")
}

function updateMemberDisplay(x)
{

	 var arrData = http.responseText.split("|")
		
	for(i=0;i<4;i++)
		{
			get(i + x).innerHTML = arrData[i];
		
		}
}

function getFile(type)
{
	if(get('meetingGUID').value == "")
		{
			alert('Please select a meeting date.');
			return;
		}
			
	w = 750
	h = 540
	var winInfo='toolbar=no,location=no,status=no,menubar=no,resizable=yes,scrollbars=yes,width=' + w + ',height=' + h
	Pitch = window.open('getCommitteeFile.asp?meetingGUID=' + get('meetingGUID').value + '&fileType=' + type, "win", winInfo);
	Pitch.window.moveTo(screen.availWidth/2 - w/2 ,screen.availHeight/2 - h/2 - 20)
	Pitch.focus();

}

