function submitLoginOnEnter(event) {
	if(event.keyCode == 13) {
		document.loginForm.submit();
	}
}

function clearOption(orderNum){
	eval('document.addEditForm.title_'+orderNum).value='';
	eval('document.addEditForm.description_'+orderNum).value='';
	eval('document.addEditForm.non_member_fee_'+orderNum).value='';
	eval('document.addEditForm.member_fee_'+orderNum).value='';
}
//for the Issacs photoGallery site
function submitHref(aSelect) {
	window.location.href=aSelect.options[aSelect.selectedIndex].value;
}
