
function validate_comments_form(form){

   
   if($F(form['comment[author]'])==''){
        display_comments_error("El campo Nombre es imprescindible.");
        return false;
    }
   
    if($F(form['comment[content]'])==''){
        display_comments_error("Pero si no has escrito ningún comentario... ¿qué quieres enviar?");
        return false;
    }
   return true;
    
}

function display_comments_error(error_msg){
    $('comments-error-msg').update(error_msg);
    Element.show('comments-error-msg');
    
}


 Event.observe(window, 'load',function() {
     changeFoto(defaultFotoId);
 });
