// JavaScript Document

function changeFoto(id, file) {
	advAJAX.setDefaultParameters({
		onInitialization : function(obj) { document.getElementById(obj.tag).innerHTML = "Preparing..."; },
		onLoading : function(obj) { document.getElementById(obj.tag).innerHTML = "Loading..."; },
		onSuccess : function(obj) { document.getElementById(obj.tag).innerHTML = obj.responseText; myLightbox.updateImageList(); },
		onError : function(obj) { document.getElementById(obj.tag).innerHTML = "Error..."; }
	});
	advAJAX.get({ url: "modules/changeFoto.php?id=" + id + "&file=" + file, tag: "bigFoto" });
	advAJAX.setDefaultParameters({});
}
