function submitForm()
{
	var event = $('submitEvent').value;
	new Ajax.Updater('processing', 'process/' + event + '.cfm', {method: 'post', parameters:Form.serialize($('sausageForm')), evalScripts: true});
}
function checkChecks(id)
{
	if ($(id).checked == true)
	{
		$('allChecks').style.display = "none";
	} else
	{
		$('allChecks').style.display = "block";
	}
}
