function addcommentClick(nazwa, nazwaKolumny, nazwaTabeli, nazwaDoTabeli, nazwaDoUser, idTabeli, idUser,data) {
    valueKolumny = document.getElementById('addCommentTextArea' + nazwa).value;

    command = 'insert into `' + nazwaTabeli + '` ( `Id_0_' + nazwaDoUser + '`,`Id_0_' + nazwaDoTabeli + '`,`' + nazwaKolumny + '`,`Data_dodania` ) values ( ' + idUser + ',' + idTabeli + ",'010" + valueKolumny + "'010 ,'010" + data + "'010 )";
    document.getElementById('addCommentForm' + nazwa).getElementsByTagName('input')[0].value = command;
    document.getElementById('addCommentForm' + nazwa).submit();
   // document.location = document.location + '&sqlCommand=' + command ;
}
