// ---------------------------------------------------
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 Foto(img){
  foto1= new Image();
  foto1.src=(img);
  Controlla(img);
}
function Controlla(img){
  if((foto1.width!=0)&&(foto1.height!=0)){
    viewFoto(img);
  }
  else{
    funzione="Controlla('"+img+"')";
    intervallo=setTimeout(funzione,20);
  }
}
function viewFoto(img){
  largh=foto1.width+20;
  altez=foto1.height+20;
  stringa="width="+largh+",height="+altez;
  finestra=window.open(img,"",stringa);
}
//-------------------------------------------------------

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' );
}
