function submitForm(formId) {
	form = document.getElementById(formId);
	form.submit();
}

