function checkAgreement()
{ 
	if ( document.getElementById('IsAgreementAccepted').value != 1 )
	{
	    alert( "You must indicate that you accept the terms and conditions of this agreement to submit." );
	    return false;
	}
	
	return true;
}
