var submitted = false;

function checkNotSubmitted() {

	if (!submitted) {

		submitted = true;
		return true;

	} else {

		return false;
	}
}
