<!--hide
function newwindow(URL, width, height)
{ 
  if (!width) width=350
  if (!height) height=350
  
  valleft = (screen.width - width)/2
  valtop = (screen.height- height)/2
  
  handle = window.open(URL,'definizione','width=' + width + ', height=' + height + ', left=' + valleft + ', top=' + valtop + ', resizable=yes , scrollbars=yes');
  handle.focus();
} 

function newwindowNoBordo(URL, width, height)
{ 
  if (!width) width=350
  if (!height) height=350
  
  valleft = (screen.width - width)/2
  valtop = (screen.height- height)/2
  
  handle = window.open(URL,'definizione','fullscreen=yes,width=' + width + ', height=' + height + ', left=' + valleft + ', top=' + valtop + ', resizable=no, scrollbars=yes');  
  handle.resizeTo(width,height);
  handle.focus();
  handle.moveTo(valleft, valtop);
} 

//--> 