
function AutoResize(img){ 
  img1 = "/MasterAdmin/Photo/data/"+img ;
  foto1= new Image(); 
  foto1.src=(img1); 
  Controlla(img); 
} 
function Controlla(img){ 
  if((foto1.width!=0)&&(foto1.height!=0)){ 
	viewFoto(img1); 
  } 
  else{ 
    funzione="Controlla('"+img+"')"; 
    intervallo=setTimeout(funzione,20); 
  } 
} 
function viewFoto(img){  
  
  largh=foto1.width;//+20; 
  altez=foto1.height;//+20; 
  //stringa="width="+largh+",height="+altez+",left=0,top=0"; 
  var winl = (screen.width - largh) / 2;
  var wint = (screen.height - altez) / 2;
  stringa = 'height='+altez+',width='+largh+',top='+wint+',left='+winl+',scrollbars=no,resizable=no,toobar=no'

  link = "img=" + img + "&width=" + largh + "&height=" + altez ; 
  finestra=window.open("Img_View.asp?"+ link,"Imgae",stringa);
  //finestra.document.write("<html><TITLE> ¾Ù¹ü ¸®½ºÆ® </TITLE></html>");

} 