<!--
function ValidateForm(step)
{
	if (step == 1)
	{
		var tccID=document.Confirm.tcc;
		if (tccID.value==null || tccID.value=="")
		{
			alert("Please provide your telephone confirmation code.");
			tccID.focus();
			return false;
		}
	}

	if (step == 2)
	{
		if (!document.Confirm.esig.checked)
		{
			alert("Please check the box at the bottom of the page.");
			return false;
		}
	}

	return true;
 }
//-->


