function tx_kasy_render(miasto)
{
	$('#tx_kasy_content').html('<table style="text-align:center; width:648px; height:100px;"><tr><td><img src="fileadmin/templates/main/img/loader.gif" /></td></tr></table>');
	$.post("index.php?type=1319", {action: 'kasy', uid: miasto },
		  function(data){
			$('#tx_kasy_content').html(data);
		  });
	return false;
}

function tx_kasy_renderAutomaty()
{
	$('#tx_kasy_content').html('<table style="text-align:center; width:648px; height:100px;"><tr><td><img src="fileadmin/templates/main/img/loader.gif" /></td></tr></table>');
	$.post("index.php?type=1319", { action: 'automaty' },
		  function(data){
			$('#tx_kasy_content').html(data);
		  });
	return false;
}



