<!--
var xmlHttp = false;

function cambiar_fotos(modo, id_album, orden) {
	// Crear objeto xmlHttpRequest.
	try { // IE JavaScript 5
		xmlHttp = new ActiveXObject("Msxml2.XMLHTTP");
	} catch(e) {
		try {
			xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
		} catch(E) {
			xmlHttp = false;
		}
	}

	// Si no es IE.
	if(!xmlHttp && typeof XMLHttpRequest != 'undefined') {
		xmlHttp = new XMLHttpRequest();
	}

	// Enviar.
	xmlHttp.open("GET", "ajax.php?modo=" + modo + "&id_album=" + id_album + "&orden=" + orden, true);

	// Marcar qué función manejará la respuesta.
	xmlHttp.onreadystatechange = function() {
		if (xmlHttp.readyState == 4) {
			document.getElementById("pasador_fotos").innerHTML = xmlHttp.responseText;
		}
	}
	xmlHttp.send(null);
}
//-->
