function disableSubmit(Form) {
	Form.lastChild.disabled = true; //submit must be the last form element
	return true;
}