// c = 1 [PopUp Centrata]
// w = larghezza
// h = altezza
// p = pagina
// l = distanza margine laterale
// t = distanza margine superiore
// n = nome pagina
// cR = resize
// cScroll = scrollbars
// cS = status
// cD = directories
// cL = location
// cT = toolbar 
function oPopup(c, w, h, p, n, cR, cScroll, cS, cD, cL, cT)
 {
  var l = 0;
  var t = 0;
  if (c==1)
   {
    l = Math.floor((screen.width-w)/2);
    t = Math.floor((screen.height-h)/2);
   }
   
  var config = "height=" + h; // Altezza
  config += ",width=" + w; // Larghezza
  config += ",resizable=" + cR; // Ridimensione
  config += ",top=" + t; // Top
  config += ",left=" + l; // Left
  config += ",scrollbars=" + cScroll; // Scrollbars
  config += ",status=" + cS; // Status
  config += ",directories=" + cD; // Directories
  config += ",location=" + cL; // Location
  config += ",toolbar=" + cT; // Toolbar

  window.open(p, n, config);
 }