
var alreadySubmitted = false;
function PreventResubmit(source, arguments)
{
	//Checks that the page has not already been submitted
	if (alreadySubmitted == true)
	{
		arguments.IsValid = false;
	}
	else
	{		
		alreadySubmitted = true;
		arguments.IsValid = true;
	}
}


