// script to reload a page or move to another page by some method
// that does not allow for a button click (e.g., a link or drop down box change)
function saveAndContinue(methodName)
{
	document.forms[0].method.value = methodName;
	document.forms[0].target = "_self";
	if (document.forms[0].onsubmit())
	{
		document.forms[0].submit();
	}
}
