


function WyswietlLata(){
	var req = mint.Request();
	
	req.AddParam("jed", $("jed").value);
	req.AddParam("mod", "spec");
	req.method = "post";
	
	req.OnLoading = function() {
		$('srok').innerHTML = '<p style="margin-top: 5px">Wczytuję dane ...</p>';
	};
	
	req.OnSuccess = function() {
		$('srok').innerHTML = this.responseText;
	};
	
	req.Send("sajax.php");
		
}


function WyswietlNr(){
	var req = mint.Request();
	
	req.AddParam("jed", $("jed").value);
	req.AddParam("jrok", $("jrok").value);
	req.AddParam("mod", "nrr");
	req.method = "post";
	
	req.OnLoading = function() {
		$('snr').innerHTML = '<p style="margin-top: 5px">Wczytuję dane ...</p>';
	};
	
	req.OnSuccess = function() {
		$('snr').innerHTML = this.responseText;
	};
	
	req.Send("sajax.php");		
}



function JedChange(){
	var optPr=document.c.jed.options[document.c.jed.selectedIndex].value;
	if(optPr!=0){
		WyswietlLata();
	}
}


function LataChange(){
	var optPr=document.c.jrok.options[document.c.jrok.selectedIndex].value;
	if(optPr!=0){
		WyswietlNr();
	}
}


