function show( strWay )
{
	advAJAX.get
	(
		{
    		url: "?module=Default&action=GetRegulation",
		    
		    parameters:
		    {
		    
		    	"way": strWay
		    
		    },
		    
		    onSuccess: function( obj )
		    {
		    	document.getElementById( 'regulation' ).innerHTML = obj.responseText
		    },
		    
		    onLoading: function( obj )
		    {
		    	document.getElementById( 'regulation' ).innerHTML = '<strong style="align:center;">Trwa ładownie...</strong>'
		    },
		    
		    onError: function( obj )
		    {
		    	
		    	document.getElementById( 'regulation' ).innerHTML = 'Wystapił błąd.'
		    }
		}
	);
}
