$( document ).ready(function(){
	popup = null;
	info = '';
	$( '#atendimento button' ).click( function(){
		$this = $( this );
		username = $this.prev( 'input' ).val();
		if( popup == null || popup.closed ){
			if( $this.hasClass( 'eletronica' ) && $this.hasClass( 'vendas' ) ){
				info = 'Este usuário veio do segmento Eletrônica, departamento Vendas';
				popup = window.open('/chat/client.php?locale=pt-br&style=simplicity&group=4&info=' + info + '&name=' + username + '&url=' + escape(document.location.href) +'&referrer='+escape(document.referrer), 'webim', 'toolbar=0,scrollbars=0,location=0,status=1,menubar=0,width=640,height=480,resizable=1');
			}
			if( $this.hasClass( 'eletronica' ) && $this.hasClass( 'suporte' ) ){
				info = 'Este usuário veio do segmento Eletrônica, departamento Suporte';
				popup = window.open('/chat/client.php?locale=pt-br&style=simplicity&group=3&info=' + info + '&name=' + username + '&url=' + escape(document.location.href) +'&referrer='+escape(document.referrer), 'webim', 'toolbar=0,scrollbars=0,location=0,status=1,menubar=0,width=640,height=480,resizable=1');
			}
			if( $this.hasClass( 'medica' ) && $this.hasClass( 'vendas' ) ){
				info = 'Este usuário veio do segmento Médica, departamento Vendas';
				popup = window.open('/chat/client.php?locale=pt-br&style=simplicity&group=2&info=' + info + '&name=' + username + '&url=' + escape(document.location.href) +'&referrer='+escape(document.referrer), 'webim', 'toolbar=0,scrollbars=0,location=0,status=1,menubar=0,width=640,height=480,resizable=1');
			}
			if( $this.hasClass( 'medica' ) && $this.hasClass( 'suporte' ) ){
				info = 'Este usuário veio do segmento Médica, departamento Suporte';
				popup = window.open('/chat/client.php?locale=pt-br&style=simplicity&group=1&info=' + info + '&name=' + username + '&url=' + escape(document.location.href) +'&referrer='+escape(document.referrer), 'webim', 'toolbar=0,scrollbars=0,location=0,status=1,menubar=0,width=640,height=480,resizable=1');
			}
		} else {
			alert( 'Você já está com um chat aberto.' );
		}
		popup.focus();
		return false;
	})

})
