var ERROR_COUNT = 0 ;
function validateform()
{
	if ($('input#agree').get()[0].checked == false)
	{
		$('input#agree').get()[0].focus();
		alert("You must certify that the above information is correct to the best of your knowledge.");
		return false;
	}
}

function red()
{
	$('input#lastname').addClass("red");							
	return false;
}
function isEmpty(o)
{
  return $(o).get()[0].value == "";
}
function required(o)
{
	if (isEmpty(o))
	{
	   $(o).addClass("red");
	}   
	else
	{
	   $(o).removeClass("red");	
	}   
}
