function popup_windows(pagina,lunghezza,altezza){
 newwindow=window.open(pagina,"IWIN","width="+lunghezza+",height="+altezza+",scrollbars=yes");
 newwindow.focus();
}
function imagePopUp(immagine,altezza,lunghezza){

 newwindow=window.open("","img","top=100,left=100,width=1,height=1,scrollbars=no");
 newwindow.close();
 newwindow=window.open("/utility/imagepopup.php?immagine="+immagine,"img","top=100,left=100,width="+lunghezza+",height="+altezza+",scrollbars=no");
}
function paginaup(){
newwindow=window.open("/popup.php","PRIMAPAGINA","width=300,height=200");
newwindow.focus();
}
function gotoURL(selObj,restore){ //v3.0
  newwindow=window.open(selObj.options[selObj.selectedIndex].value);
}
