<!-- 
function showImage(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){
  stringa="width="+(foto1.width+20)+",height="+(foto1.height+20)+",top="+(window.screen.availHeight-foto1.height)/2+",left="+(window.screen.availWidth-foto1.width)/2;
  finestra=window.open(img,"",stringa+", resizable=yes");
}

function OpenEditPage(url) {
  w="540"; h="420";
  l=(screen.availWidth-w)/2; t=(screen.availHeight-h)/2;
	OpenWin = this.open(url, "CtrlWindow", "toolbar=no,menubar=no,statusbar=yes,scrollbars=yes,resizable=yes,width="+w+",height="+h+",left="+l+",top="+t);
}
// -->