// ---------------------------------------------------
function otworz(adres) {
noweOkno = window.open(adres, 'Dodaj','menubar=no, toolbar=no, location=no, scrollbars=no, resizable=no, status=no, width=400,height=260,top=250,left=500')

}

// ---------------------------------------------------

function deletepic( strona ) {
var sprawdz = window.confirm("Czy na pewno chesz skasować zdjęcie  ?");
if (sprawdz == true) {
document.location.href = strona;
return true;
}
else if (sprawdz == false) {
return false;
}
}
// ---------------------------------------------------
function okienko(url,name,width,height,sb,resizable){
	 return window.open(url,name,'align=center,toolbar=0,status=0,location=0,directories=0,resizable='+resizable+',scrollbars=yes,width='+width+',height='+height+',menubar=no');
}
function displayWindow(url, width, height) {
        var Win = window.open(url,"displayWindow",'width=' + width + ',height=' + height + ',resizable=0,scrollbars=no,menubar=no,status=no,top=0,left=600' );
}


// ---------------------------------------------------



