// Place your application-specific JavaScript functions and classes here
// This file is automatically included by javascript_include_tag :defaults

function clear_validate(){
  if($('cleverValidation')){
    $('cleverValidation').hide();
  }
}

function validate_news(){
  if($('news_name')){
    if($F('news_name')=='')
    {
      alert('Preencha o nome.');
      return false;
    }
    if($F('news_email')=='')
    {
      alert('Preencha o e-mail.');
      return false;
    }
    return true;
  }
}
