<!-- Begin
function pop_Up(URL,w,h) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width='+w+',height='+h+',left = 0,top = 0');");
}




function popUp(img){
  photo1= new Image();
  photo1.src=(img);
  Control(img);
}
function Control(img){
  if((photo1.width!=0)&&(photo1.height!=0)){
    viewphoto(img);
  }
  else{
    funzione="Control('"+img+"')";
    intervallo=setTimeout(funzione,20);
  }
}
function viewphoto(img){
  w=photo1.width+30;
  h=photo1.height+30;
 // string="width="+w+",height="+h;
  finestra=window.open(img,"",'width='+w+',height='+h);
}
// End -->