function disableButton(form, button) {
	form.submit();
	button.disabled = true;
	button.value = 'Processing...';
}