function logoutContato(){
	var aux;
	aux = confirm("Deseja encerrar o atendimento?");
	if(aux == true){
		location.href="logout_contato.asp";
	}
}
function logoutAtendente(){
	var aux;
	aux = confirm("Deseja encerrar o atendimento?");
	if(aux == true){
		location.href="logout_atendente.asp";
	}
}

function abrirJanela(url, w, h, l, t){
	janela = open
	(url, 'window', 'titlebar=no, width=' + w + ', height=' + h + ', menubar=no, toolbar=no, location=no, scrollbars=no, status=no, left=' + l + ', top=' + t + '');
	janela.focus();
}

function acaoComboPredefinida(){
	var op;
	op = document.form1.optmensagem.value;
	document.form1.txtpergunta.value = op;
}

function mostrarFila(){
	obj = document.getElementById("fila");
	if (obj.style.display != "block"){
			obj.style.display = "block";
	}
	else{
			obj.style.display = "none";
	}
}