function validate()
{
	var field	= $('permission');
	
	if ( field.checked == false )
	{
		alert('The permission checkbox must be checked indicating that a valid patient permission form is on file permitting use of the image on the internet.');
		return false;
	}
}