function send_message(conv,message){
if (conv.length > 4) {
conv = conv + "<br>";
}
$("#converse").html(conv +"<div class='message-box left-img'><div class='picture'><img src='/my2/a.png' title='user name'></div><div class='mes'><span class = 'current-msg'>" + "<span id='chat-bot'>Бот: </span><p>" + message + "</p></span></div></div>");
$(".current-msg").delay(500).fadeIn(function() {
var el='converse';
document.getElementById(el).scrollTop=document.getElementById(el).scrollHeight
})
$(".current-msg").removeClass("current-msg");
}
.message-box.left-img .mes:first-child{
margin-bottom:0px;
}
.message-box.left-img .mes:last-child{
margin-bottom:20px;
}