function pokaz(id)
{
    e = document.getElementById(id).style;
    e.display = 'block';
    e.marginTop = '15px';
    e.marginBottom = '15px';
}


// funkcja dla automatycznego zmaxymalizowania strony
// .domin
function ustaw_max()
{
	self.moveTo(0,0)
	self.resizeTo(screen.availWidth,screen.availHeight)
}

function schowaj(id)
{
    e = document.getElementById(id).style;
    e.display = 'none';
}

function pokaz_dane(id)
{
    e = document.getElementById(id).style;
    e.display = 'block';
    
    
}

function schowaj_dane(id)
{
    e = document.getElementById(id).style;
    e.display = 'none';
}

function ustaw(id)
{
    szer = screen.width;
    wys = screen.height;
    e = document.getElementById(id).style;
    szerbox = document.getElementById(id).clientWidth;
    wysbox = document.getElementById(id).clientHeight;
    newx = (szer/2)-(szerbox/2);
    newy = (wys/2)-(wysbox/2);
/*    window.alert(szer);
    window.alert(wys);
    window.alert(szerbox);
    window.alert(wysbox);
    window.alert(newx);
    window.alert(newy);*/
    e.left = newx+'px';
    e.top = newy+'px';
}
