<!--
var screen_width = null;
var screen_height = null;
screen_width = screen.width;
screen_height = screen.height;
w1 = screen_width / 2;
h1 = screen_height / 2;

function photo(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,120);
  }
}
function viewFoto(img){
  var finestra;
  largh=foto1.width+20;
  altez=foto1.height+20;
  wtop=h1-((altez/2)+24); wleft=w1-(largh/2);
  stringa="width="+largh+",height="+altez+",top="+wtop+",left="+wleft;
  finestra=window.open(img,"aa",stringa);
//  finestra.document.writeln('hello_Well');
 
}


/*
// My SCRIPT
function photo(img){
	photo1 = new Image();
	photo1.src = (img);
	width = photo1.width;
	height= photo1.height;

	aleft = w1- (width/2); atop = h1 - (height/2);

	var win_popup;
	sizing = "width=" + width + ", height=" + height + ",top=" + atop + ", left= " + aleft;
	win_popup = window.open (img,"",sizing);
}
*/

//  End -->
