function openEventoFotos(idEvento) {
	var w = 695;
	var h = 580;
	var wind = window.open('eventos_popup.aspx?idevn='+idEvento,'evento'+idEvento, 'width='+w+',height='+h+',scrollbars=no,statusbar=yes');
	wind.focus();
}

function openChat(idChat) {
	var w = 695;
	var h = 600;
	var wind = window.open('chat_popup.aspx?idcht='+idChat,'chat'+idChat, 'width='+w+',height='+h+',scrollbars=no,statusbar=yes');
	wind.focus();
}


function trocaFoto(strFoto,strDescricao){
    document.getElementById("img_main").src = "../../upload/evento/" + strFoto;
    document.getElementById("img_main").alt = strDescricao;
    document.getElementById("lbl_titulo").innerText = strDescricao;
}
