// This will prevent a form from being submitted multiple times. 
// Once it has been called once, any further calls will return false, which will
// stop the form from submitting. 
var submitted = false;
function handleSubmit() {
	if (submitted) 	{
		return false;
	}
	submitted = true;
	return true;
}