// generic confirm for form submital, good for onClick event on delete buttons

function formConfirm(msg) {
	return confirm(msg);
}
