function Excluir (id, pg_ret, tabela){
	if(confirm("Deseja realmente excluir este registro ?")) {
    	window.location = pg_ret+"?acao=deletar&id="+id+"&tabela="+tabela+"&pg_ret="+pg_ret;
	}
}

function Exclui (id, pg_ret, tabela){
	//Funçao NAO exclui apenas bloqueia o cliente
	if(confirm("Deseja realmente excluir este registro ?")) {
    	window.location = pg_ret+"?acao=deleta&id="+id+"&tabela="+tabela+"&pg_ret="+pg_ret;
	}
}

function AbrirJanela(url){
	window.open(url, 'Achei Sa', 'width=480, height=360, toolbar=no, location=no, scrollbars=no, resizable=no, status=no');
}

function ShowForm (div_id) {
     var element = document.getElementById(div_id);
     element.style.display = 'block';    
     return false;
}

function HideForm (div_id) {
     var element = document.getElementById(div_id);    
     element.style.display = 'none';
     return false;
}

function imprimir(div){
	teste = document.getElementById(div).innerHTML;
	var tmp = window.open('impressao.php', 'Impressao', 'width=660, height=360, toolbar=no, location=no, scrollbars=no, resizable=no, status=no');
	tmp.document.getElementById('conteudoimpressao').innerHTML = "Teste "
//	tmp.window.print();
}

function sleep(milliseconds) {
  var start = new Date().getTime();
  for (var i = 0; i < 1e7; i++) {
    if ((new Date().getTime() - start) > milliseconds){
      break;
    }
  }
}


i=0;
function fechadiv(form)
{
    i++;
    if(i==10)
    {
        HideForm(form);
    }
    setTimeout("fechadiv('form')", 1000);
}

function fecharFloat(sec, form){
	sleep(sec*1000);
	
}
