// JavaScript Document


 function validation(theForm){
if (theForm.permission_to_publish_recipe.checked == false)
		{
		alert ("We require your permission to publish your recipe(s)");
    return (false);
  }
return true
}


