function ZoomImg(img,pagina,incremx,incremy){
  
  foto1= new Image();
  foto1.src=(img);
  Controlla(img,pagina,incremx,incremy);
  }

function Controlla(img,pagina,incremx,incremy){
  if((foto1.width!=0)&&(foto1.height!=0)){
	var clientHt = window.screen.height;
	var clientWt = window.screen.width;	
	var larghImg = foto1.width;
	var altezImg = foto1.height;
	largh = larghImg + incremx;
	altez = altezImg + incremy;  
	stringa="width="+largh+",height="+altez+",resizable=no,location=no, toolbar=no, menubar=no";
  	finestra = window.open(pagina,"",stringa);
  	finestra.moveTo( (clientWt/2)-(largh/2) , (clientHt/2)-(altez/2) );
	}
  else{
    funzione="Controlla('"+img+"','"+pagina+"','"+incremx+"','"+incremy+"')";
    intervallo=setTimeout(funzione,40);
  }
}
