function submitForm(formID) {
	var fObj = document.getElementById(formID);
	if (fObj) {
		fObj.submit();
	}
}