function cargar_video(video){
	var cargador = document.getElementById('cargador');
	var precarga = document.getElementById('precarga');
	var xmlhttp = Ajax();
	var url = video;
	xmlhttp.open("POST", url, true);
	xmlhttp.onreadystatechange = function() {
		if(xmlhttp.readyState==1){
                cargador.style.background =  "url('http://danigarcia.disenocreativo.es/_images/loading.gif') #fff no-repeat center"; 
				cargador.style.width =  "500px"; 
		}else if (xmlhttp.readyState == 4) {
			cargador.style.border = "7px solid #fff"; 
			cargador.innerHTML = xmlhttp.responseText;
		}
	};
	xmlhttp.send(null);
}

function cargar_imagen(imagen){
	var cargador = document.getElementById('cargador');
	
	var xmlhttp = Ajax();
	var url = "fotos_galeria.php?imagen="+imagen;
	xmlhttp.open("POST", url, true);
	xmlhttp.onreadystatechange = function() {
		 if(xmlhttp.readyState==1){
                cargador.style.background =  "url('http://danigarcia.disenocreativo.es/_images/loading.gif') #fff no-repeat center"; 
		}else if (xmlhttp.readyState == 4) {
			cargador.style.border = "7px solid #fff"; 
			cargador.innerHTML = xmlhttp.responseText;
		}
	};
	xmlhttp.send(null);
}



