var submit = true;
function submitThisForm() {
	if (submit) {
		submit = false;
		return true;
	} else {
		return false;
	}
}
	
