function otworz(adres){
okno=window.open(adres,'Administracja','width=550,height=150,left=300,top=100');
okno.focus();
}

function otworz2(adres){
okno=window.open(adres,'Administracja','width=650,height=180,left=300,top=100');
okno.focus();
}

function otworz3(adres){
okno=window.open(adres,'Administracja','width=650,height=230,left=300,top=100');
okno.focus();
}

function otworz4(adres){
okno=window.open(adres,'Administracja','width=792,height=665,left=300,top=100');
okno.focus();
}

function otworz5(adres){
okno=window.open(adres,'Administracja','width=265,height=160,left=300,top=100');
okno.focus();
}

function zamknij(){
window.close();
}

function show(plik)
{
	okno=window.open("","","width=800px,height=800px,resizable,scrollbars");
	okno.document.open();
	okno.document.write('<html><head><title>Aby zamkn±æ, kliknij w obrazek.</title></head><body onclick="parent.close();" leftmargin=0 topmargin=0 style="cursor: hand;background:#f2f8d2"><table cellspacing=0 cellpadding=0 width=100% height=100%><tr><td align=center valign=middle><img src="'+plik+'" style="border:2px solid #000;"></td></tr></table></body></html>');
	okno.document.close();
	okno.focus();
}