// JavaScript Document
//#################################################################################################################
// CARREGA SUBCATEGORIS
//#################################################################################################################

//CATEGORIAS E SUB
function ajaxInit() {

  var xmlhttp;

  try {
     xmlhttp = new XMLHttpRequest();
  } catch(ee) {
     try {
        xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");
     } catch(e) {
        try {
           xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
        } catch(E) {
           xmlhttp = false;
        }
     }
  }

  return xmlhttp;
	}
	
function getCategoriasFotos()
{
  FotosCategoria = document.getElementById("categoria").value;
  ajax = ajaxInit();
  
  if (ajax)
  {
     ajax.open("GET", "categorias_galerias.php?cat=" + FotosCategoria, true);
     ajax.onreadystatechange = function ()
	 {
        if (ajax.readyState == 4)
		{
           if (ajax.status == 200)
		   {
              document.getElementById('subcategorias').innerHTML = ajax.responseText;
           } 
		   else 
		   {
              alert(ajax.statusText);
           }
        }
     }
     ajax.send(null);
  }  
}


