// This file provides reference/footnote functionality

function toggleFootnote(id) {	var footnote = document.getElementById(id);	if (footnote.style.display != 'inline')	{ 	    footnote.style.display = 'inline';	}	else	{		footnote.style.display = 'none';	}}