<!-- 
function newwindow(URL,titolo,impostazioni)
{ 
  larghezza = 600
  altezza = 450
  margineSx = (screen.width - larghezza)/2
  margineTop = (screen.height - altezza)/2  
  //handle = window.open(URL,'definizione','width='+larghezza+',height='+altezza+',resizable=yes,scrollbars=yes,left='+ margineSx+',top='+margineTop);
  handle = window.open(URL,titolo,impostazioni+',left='+ margineSx+',top='+margineTop);
  handle.focus();
} 

function newwindowC(URL,larghezza,altezza)
{   
  margineSx = (screen.width - larghezza)/2
  margineTop = (screen.height - altezza)/2  
  handle = window.open(URL,'definizione','width='+larghezza+',height='+altezza+',resizable=yes,scrollbars=yes,left='+ margineSx+',top='+margineTop);  
  handle.focus();
} 

function newwindowMax(URL,titolo,impostazioni)
{   
  larghezza = screen.width - 15;
  altezza = screen.height - 40;
  handle = window.open(URL,titolo,'width='+ larghezza + ',height=' + altezza + ',resizable=yes,scrollbars=yes,left=0,top=0'+impostazioni);  
  handle.focus();
} 

// --> 
