function loadAttendancePopup()
    {
        alert('test');
    }
    
function showAttendanceDropdown(attendanceDropDownId)
{
	var attendanceDropDown = document.getElementById(attendanceDropDownId) 
	if ( attendanceDropDown )
	{
		if ( attendanceDropDown.style.visibility == 'hidden' )
			attendanceDropDown.style.visibility = 'visible';
		else
			attendanceDropDown.style.visibility = 'hidden';
	}
}

function performAttendancePostback(attendType, evtId)
{
	if (attendType == 'will')
		__doPostBack('__Page','AttendancePostBack_will_' + evtId);
	else if (attendType == 'might')
		__doPostBack('__Page','AttendancePostBack_might_' + evtId);
	else 
		__doPostBack('__Page','AttendancePostBack_wont_' + evtId);
}
