// JavaScript Document

// ******************************************
// Apre una popup. 
// Dichiarare, nel file prima della function: var popUpWin=0; 
// Per chiamare la function, ad esempio: popUpWindow('nomefilexxx', 10, 10, 600, 500)
// ******************************************
function popUpWindow(URLStr, left, top, width, height)
{
  if(popUpWin)
  {
    if(!popUpWin.closed) popUpWin.close();
  }
  popUpWin = open(URLStr, 'popUpWin', 'toolbar=no,location=no,directories=no,status=no,menub ar=no,scrollbar=no,resizable=no,copyhistory=yes,width='+width+',height='+height+',left='+left+', top='+top+',screenX='+left+',screenY='+top+'');
}


// ******************************************
// Apre una popup, con barra di scorrimento laterale 
// Dichiarare, nel file prima della function: var popUpWin=0; 
// Per chiamare la function, ad esempio: popUpWindow('nomefilexxx', 10, 10, 600, 500)
// ******************************************
function popUpScroll(URLStr, left, top, width, height)
{
  if(popUpWin)
  {
    if(!popUpWin.closed) popUpWin.close();
  }
  popUpWin = open(URLStr, 'popUpWin', 'toolbar=yes,location=no,directories=no,status=no,menub ar=no,scrollbars=yes,resizable=no,copyhistory=yes,width='+width+',height='+height+',left='+left+', top='+top+',screenX='+left+',screenY='+top+'');
  popUpWin.focus();
}
 
