// JavaScript 
// gestione dell'apertura delle finestre

function popup(str){ 
window.open(str,'','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width=350,height=350,left=160,top=200'); 
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

//imposta anche il COLORE della finestra
function MM_openBrWindowCol(theURL,winName,features,color) { 
  win=window.open(theURL,winName,features);
  if (win && !win.closed) win.document.bgColor = "" + "#" + color + "";
}

//imposta anche la POSIZIONE della finestra
function MM_openBrWindowMov(theURL,winName,features,posX,posY) { 
  win=window.open(theURL,winName,features);
  if (win && !win.closed) win.moveTo(posX,posY);
}
