<!--

function BullStatistic()
{
	var colorDepth = window.screen.colorDepth;
	var res = window.screen.width + "," + window.screen.height;
	var referer = escape(document.referrer);
	document.write('<img src="/statystyka/zlicz.php?colors=' + colorDepth + '&resolution=' + res + '&referer=' + referer + '" style="width:0;height:0;" />');
}

function mycarousel_initCallback(carousel)
{
    // Disable autoscrolling if the user clicks the prev or next button.
    carousel.buttonNext.bind('click', function() {
        carousel.startAuto(0);
    });

    carousel.buttonPrev.bind('click', function() {
        carousel.startAuto(0);
    });

    // Pause autoscrolling if the user moves with the cursor over the clip.
    carousel.clip.hover(function() {
        carousel.stopAuto();
    }, function() {
        carousel.startAuto();
    });
};

function fpSysOper(wartosc)
{
	if(wartosc != '')
	{
		jQuery.post("/ajax/FPWersje.php", { id: wartosc },
		function(data){
			jQuery('#fpCombo2').html(data);
			jQuery('#fpCombo3').html("");
		});
	}
	else
	{
		jQuery('#fpCombo2').html("");
		jQuery('#fpCombo3').html("");
	}
}

function fpWersja(wartosc)
{
	if(wartosc != '')
	{
		jQuery.post("/ajax/FPWersjaInfo.php", { id: wartosc },
		function(data){
			jQuery('#fpCombo3').html(data);
		});
	}
	else
	{
		jQuery('#fpCombo3').html("");
	}
}

function fpPobierz()
{
	jQuery.post("/ajax/FPZliczPobranie.php", { system: jQuery("#fpSysOper").val(), wersja: jQuery("#fpWersja").val() },
		function(data){
				
		});
}

// -->
