var submitcount = 1;

function CheckSubmitCount(theForm)
{
	if (1 == submitcount)
	{
		theForm.submit();
	}

	submitcount++;
}


