//AJAX
function openAjaxXx() {
var AjaxXx;
try {AjaxXx = new XMLHttpRequest(); // XMLHttpRequest para browsers mais populares, como: Firefox, Safari, dentre outros.
}catch(ee){
try {AjaxXx = new ActiveXObject("Msxml2.XMLHTTP"); // Para o IE da MS
}catch(e){
try {AjaxXx = new ActiveXObject("Microsoft.XMLHTTP"); // Para o IE da MS
}catch(e){AjaxXx = false;}
}
}
return AjaxXx;
}

//ABRIR JANELA
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

//SHOW
function show(id){
  caixa = document.getElementById(id);
  caixa.style.display = "";
}
//HIDE
function hide(id){
caixa = document.getElementById(id);
caixa.style.display = "none";
}

//Excluir
function Excluir(id, bd, pasta, img, pagina){
  if (confirm("Confirma a exclusão? (Isso será um ato irreversível!)")){
    window.location="_php/Excluir.php?Id="+id+"&Bd="+bd+"&Pasta="+pasta+"&Img="+img+"&Pagina="+pagina;
  }
}

//LIMPA CAMPO
function limparCampo(id, cont){
  var campo = document.getElementById(id);
  if (campo.value == cont){
  campo.value = '';
  }else if(campo.value == ''){
  campo.value = cont;
  }
}