function anim() 
{
new Effect.BlindDown(document.getElementById('tresc33')); 
}

function dodaj() 
{
advAJAX.get({
    url: 'pokaz.php',
    onSuccess : function(obj) { document.getElementById('tresc33').innerHTML = obj.responseText; },
    onError : function(obj) { alert('Error: ' + obj.status); }
});

}




function blad()
{
alert('zle popraw dane ');
}

function dodajj()
{

advAJAX.submit(document.getElementById('the_form'), {
onLoading : function(obj)
        {   document.getElementById('loading').innerHTML = '<img src=load.gif><b>ładowanie czekaj ...</b>';   },
         onComplete : function(obj) {   document.getElementById('loading').innerHTML = '';    },
    onSuccess : function(obj) {
    if (parseInt(obj.responseText) == 1)
              dodaj();
          else
          blad();
        
        
    }
    
});
    
}