function addcomment(idformm,idlicc,idparentt){
    var bodyy = jQuery('#body'+idformm).val();
    //
    jQuery('#reply_c'+idformm).html("<img src='img/loading_small_yellow.gif' />");
    jQuery('#form'+idformm).hide();
    jQuery('#buton'+idformm).hide();
    jQuery('#reply'+idformm).show();
    jQuery.post("include/api_tr_addcomment.php",{idform:idformm,idlic:idlicc,idparent:idparentt,boddy:bodyy},commentadded);
   // alert('here');
}

function commentadded(dat){

    if(dat=='-'){
        alert("Nu s-a putut adauga comentariul! Reincercati.");
        
        jQuery('#reply'+dat).hide();
        jQuery('#form'+dat).show();
        jQuery('#buton'+dat).show();
    }
    else{
        jQuery('#reply_c'+dat).html(jQuery('#body'+dat).val());
        jQuery('#nocomments').hide();
    }


}
