<!--//
 var left_pos = screen.availWidth-600;
 
function popup(nomefile, larghezza, altezza) {
var win_popup = window.open(nomefile,"imm_popup","width=" + larghezza + ",height=" + altezza + ", top=100, left="+left_pos );
}

function immpopup(nomeimm) {
var nomefile = "ingrandimento.html?"+nomeimm+".jpg";
popup( nomefile, 550, 350);
}

function immpopup2(nomeimm) {
var nomefile = "ingrandimento2.html?"+nomeimm+".jpg";
popup( nomefile, 350, 550);
}
//-->