﻿//Funkcja linkująca
function link(adres)
{
location.href=adres;
}
function powieksz(adres){
window.open(adres);
}
//Funkcja pośrednicząca w wstawianiu danych
function wczytaj(adres,miejsce,id,ktory)
{
czy_jest_podswietlony = $("."+ktory).hasClass("aktywny");
if(!czy_jest_podswietlony){
loading('pokaz');
$(".onasopcje").removeClass("aktywny");
$("."+ktory).addClass("aktywny");
var adres = adres+"?id=" + id;
$("#onas").fadeOut(500,function(){
$(this).load(adres,function(){
$(this).fadeIn(500);
loading('ukryj');
});
});
}
}

//loading
function loading(akcja){
if(akcja=='pokaz'){
	$('#ladowanie').fadeOut(0,function(){
	$(this).html('<img  src="obrazki/loading.gif" /><p style=\' font-family:Monotype Corsiva,arial,serif;font-size:14px;color:black;padding:0px;margin:0px; \'>Loading</p>');
	$(this).fadeIn(500);
	});
}
else if (akcja=='ukryj'){
	$('#ladowanie').fadeOut(500);
}
}


