
<!-- Begin

function nwFoto(img){
  foto1= new Image();
  foto1.src=(img);
  Controll(img);
}
function Controll(img){
  if((foto1.width!=0)&&(foto1.height!=0)){
    viewFoto(img);
  }
  else{
    fun="Controll('"+img+"')";
    interval=setTimeout(fun,0);
  }
}
function viewFoto(img){
  wi=foto1.width+20;
  hei=foto1.height+30;
  string="width="+wi+",height="+hei;
  fine=window.open(img,"",string);
}

//  End -->

