<!-- Begin

function ShowImg(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;
  altez=foto1.height;
  stringa="left=0, top=0, width=" + largh + ", height=" + altez
  
    text = "<html><head><title>Fraktal - Slika</title></head><body bgcolor='white' leftmargin='0' topmargin='0' \
            marginwidth='0' marginheight='0'><center><img src='" + img + "' border=0></center></body></html>";
  
  finestra=window.open("", "", stringa);
  finestra.document.open();
  finestra.document.write(text);
  finestra.document.close();
  finestra.focus();
}

function ShowDialogUPripremi() {
  finestra=window.open("upripremi.htm", "", "left=" + (screen.width-350)/2 + 
      ", top=" + (screen.height-20)/2 + ", width=350, height=20");
}	

function ShowPpFlash() {
  finestra=window.open("ppFlash.html", "_ppFlash", "left=" + (screen.width-500)/2 + 
      ", top=" + (screen.height-500)/2 + ", width=500, height=500");
  finestra.focus();    
}	

//  End -->

