function popupmainnavxy(urlnav, urlmain, larghezza, altezza){
  settings="width="+larghezza+",height="+altezza+",top=0,left=0,resizable";
  parent.nav.location.href = urlnav;
  popup=window.open(urlmain,"",settings);
  return false;
}
function popupxyscroll(url, larghezza, altezza){
  settings="width="+larghezza+",height="+altezza+",top=0,left=0,scrollbars=yes,resizable";
  popup=window.open(url,"",settings);
  return false;
}
function popupxy(url, larghezza, altezza){
  settings="width="+larghezza+",height="+altezza+",top=0,left=0,resizable";
  popup=window.open(url,"",settings);
  return false;
}
function openpopup(urlmain){
  settings="width=800,height=500,top=0,left=0,noresizable, noscrolling";
  popup=window.open(urlmain,"",settings);
  return false;
}
function openpopupxy(urlmain, x , y){
  settings="width=800,height=500,top="+x+",left="+y+",noresizable, noscrolling";
  popup=window.open(urlmain,"",settings);
  return false;
}

