function quickLinksClick()
{
	var combo = document.forms["ConvForm"]["QuickLinksCombo"];
	var link = combo.options[combo.selectedIndex].value;
	if (link != "")
		location = link;
}

function contentsBarClick(action, value)
{
	var theForm = document.forms["ConvForm"];
	theForm.action = action;
	theForm["mid"].value = value;
	theForm.submit();
}