function ChangeLocation(menuObj) {
	// This function allows the year selection menu links to work on the audio/video recordings pages
   var i = menuObj.selectedIndex;
   if (i > 0) { window.location = menuObj.options[i].value; }
}

function ClearText(A,B) {
	// This function clears a text input box (A) when clicked on, if the value is equal to B
	if (A.value == B) {
		A.value = '';
		return false;
	}
}
