$(document).ready(
function()
{

  $('.join-chat').each(
  function()
  {
    $(this).click(function()
    {
      var url = '/request-chat/'+$(this).attr('id');
      //var title= $(this).attr('title');
      chat = window.open(url, "_blank" ,"toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width=400,height=450,top=50,left=50");
      chat.focus();
      return false;
    });
  });

});

function send_chat_request(chat_id)
 {
   $.ajax(
      {
        type: 'post',
        url: '/request-chat/'+chat_id,
        success: function(html)
        {
          $('#chat_request').html(html);
          setTimeout(send_chat_request, 3000);
        }
      });
 }