﻿/* Abre popup */
function abrexw(url, Titulo) {


    ShowFloatChat(url, Titulo);

//    var newWin = window.open(url, Titulo, 'toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=no, resizable=no,top=10,left=10,width=380,height=400');
//    if (newWin && newWin.top) {
//        // popup has opened
//    } else {
//        // popup has been blocked
//    alert('O PopUp foi bloqueado pelo seu navegador!');
//    }

}

function ShowFloatChat(url, Titulo) {
    // insere html na div de msgs
    var dv = $("#divChats").html();
    var msg = '<div id="chatbox_janedoe" class="chatbox">' +
              ' <div class="chatboxmenu"> <a href="#" onclick="CloseChat();"> X </a> </div> ' +
              '<iframe id="ifrmChat" src="' + url + '" width="255" height="320" frameborder="0" scrolling="no" title="' + Titulo + '">' +
              '</iframe>' +
              '</div>';
    $("#divChats").html(dv + msg);
}

function CloseChat() {
    $("#divChats").html('');
}




