function change_room (id)
{
room_id = id;
$('#msgs_list').empty ();
$('#room_data').empty ();
get_new_data (1, 1, 1, 1);
}
function add_msgs (msgs)
{
$.each(msgs, function(i, msg) {
$("<div id='chat_msg_"+msg.id+"' class='"+DIV_C_MSGS_LIST+"' onmouseover='show_icon (\"delete_icon_"+msg.id+"\");' onmouseout='hide_icon (\"delete_icon_"+msg.id+"\");'><a href='#' onclick='insert_nick (\""+msg.user_nick+" [ID"+msg.user_id+"]\"); return false;'><img src='icons/sex_"+msg.user_sex+".png' alt='' /> "+msg.user_nick+"</a> <a href='user_profile.php?user_id="+msg.user_id+"'><span style='color: grey;'>[ID"+msg.user_id+"]</span></a> "+process_text (msg.msg)+(gc_user.rights_group >= 1 ? "<a href='
http://chatmix.ru/gc_control/delete_msg.php?msg_id="+msg.id+"&location="+gc.current_location_base64+"'><img style='opacity: 0; float: right;' id='delete_icon_"+msg.id+"' src='icons/delete.png' alt='delete' title='Удалить' /></a>" : '')+"</div>").appendTo ('#msgs_list');
});
scroll_msgs_list ();
}