// JavaScript Document

function fecharChat(){	
	document.getElementById('boxFlutuante').style.display='none';
}

function abreAtendimento(url_atendimento){
    if (navigator.userAgent.toLowerCase().indexOf('opera') != -1 && window.event.preventDefault) {
        window.event.preventDefault();
    }
    else {
        this.newWindow = window.open(url_atendimento+'client.php?locale=pt-br&amp;url=' + escape(document.location.href) + '&amp;referrer=' + escape(document.referrer), 'webim', 'toolbar=0,scrollbars=0,location=0,status=1,menubar=0,width=500,height=480,resizable=1');
        this.newWindow.focus();
        this.newWindow.opener = window;
    }
}
