

function loadimage(img){
foto1= new Image();
foto1.src=(img);
}

function PopUp(img){
foto1= new Image();
foto1.src=(img);
if((foto1.width!=0)&&(foto1.height!=0)){
largh=foto1.width+20;
altez=foto1.height+20;
}else{
largh=657;
altez=497;
}
stringa="width="+largh+",height="+altez;
finestra=window.open(img,"",stringa);
}