function wys(adres) {
	advAJAX.setDefaultParameters({
    	onInitialization : function(obj) { document.getElementById(obj.tag).innerHTML = "Ładowanie..."; },
    	onLoading : function(obj) { document.getElementById(obj.tag).innerHTML = ""; },
    	onSuccess : function(obj) { document.getElementById(obj.tag).innerHTML = obj.responseText; },
    	onError : function(obj) { document.getElementById(obj.tag).innerHTML = "Wystąpił błąd..."; }
        });
    advAJAX.get({ url: "php/realizacje/"+adres+".php", tag: "flash_mirrors" });
    advAJAX.setDefaultParameters({});
    }