var loading = false;
var Voted =false;
var waitElement;
var scrollX, scrollY = -1;


function SwapFirma()
{
    firma = $('FirmaBox');
    nip = $('NipBox');
    adres = $('AdresFirmaBox');
    if (firma.style.display == '')
    {
        firma.style.display = 'none';
        nip.style.display = 'none';
        adres.style.display = 'none';
        
    
    }
    else
    {
        firma.style.display = '';
        nip.style.display = ''; adres.style.display = '';
    }

}
