var bolClicked = false;

function FormClickProtection(objSubmit)
{
	if(bolClicked == true)
	{
		alert("Please be patient and wait for your information to be submitted to our server");
		return false;
	}
	else
	{
	
		bolOK      = confirm("The information you have entered is about to be submitted to our server, please do not click the button a second time.\n\nAre you sure you want to do this?");

		if(bolClicked == false && bolOK == true)
		{
			bolClicked = true;
			
			//objSubmit.disabled = true;
			
			return true;
		}
		else
		{
			return false;
		}
	}
}