function votarBar(idItem){
                theForm = document.getElementById('frmListaBar');
                theForm.idBar.value=idItem;
                theForm.submit();
                return false;
}
function logarSite(){
                alert('aqui');
                window.location="login.php";
                alert('FU');
                return false;
}
function buscarBar(){
                theForm = document.getElementById('frmBuscaBar');
                if((theForm.buscaBar!="") && (theForm.buscaBar!="Buscar Bar:")){
                                theForm.action='bares.php';
                                theForm.submit();
                                return true;
                } else {
                                return false;
                }
}
function trim(stringToTrim) {
	return stringToTrim.replace(/^\s+|\s+$/g,"");
}
function mostraErro(msg){
                $("a#lnkErroModal").attr('href', 'erro.php?e='+msg);
                $('a#lnkErroModal').modal({width:370, height:150}).open();
                return false;
}