<!-- Sorry, this page will not display correctly unless javascript is enabled. 
//
// Function to create a hyperlink *unless* the current page is the target of the link.
// *Expects* a global var to be defined in each page that may be a target of the menu links written here.
//
function format_link(link_label, link_target)
{
	var s;
	

	if (link_label != page_label) // page_label is *expected* to exist on each page
		s = '<li><a href="' + link_target + '">' + link_label + '</a></li>';
	else
		s = '<li class="active"><a href="#">' + link_label + '</a></li>';

	return s;
	
}
//-->