// AJAX =============================================================================================

function ajaxInit() {
var req;

try {
 req = new ActiveXObject("Microsoft.XMLHTTP");
} catch(e) {
 try {
  req = new ActiveXObject("Msxml2.XMLHTTP");
 } catch(ex) {
  try {
   req = new XMLHttpRequest();
  } catch(exc) {
   alert("Esse browser não tem recursos para uso do Ajax");
   req = null;
  }
 }
}

return req;
}

function clikFoto(x) {
 id_foto = x;
 ajax = ajaxInit();
 if(ajax) {
   var exibeResultado = document.getElementById("foto_galeriaG")
   ajax.open("GET", "/galeria_fotos/acesso.asp?id=" + id_foto , true);
   ajax.onreadystatechange = function() {
	 if(ajax.readyState == 4) {
       if(ajax.status == 200) {
		 var resultado = ajax.responseText;
		   resultado = resultado.replace(/\+/g," ");
		   resultado = unescape(resultado); // Resolve o problema dos acentos
		   exibeResultado.innerHTML = resultado;
       } else {
         alert(ajax.statusText);
       }
     }
   }
   ajax.send(null);
 }
}
