

//Funzione di popup. Per le finestre di informazioni all' utente. 
var oPopupWin;

function popup(page, width, height)
{ var tmp;
  if (oPopupWin)
  { tmp=oPopupWin;
    oPopupWin=null;
    if (navigator.appName !="Netscape") tmp.close();
  }
  oPopupWin=window.open(page, "IntlPopup",
     "alwaysRaised=1,dependent=1,height=" + height + 
     ",location=0,menubar=0,personalbar=0,scrollbars=0,status=0,toolbar=0,width=" +
     width + ",resizable=0"); 
  return !oPopupWin; 
}

function popupSC(page, width, height)
{ var tmp;
  if (oPopupWin)
  { tmp=oPopupWin;
    oPopupWin=null;
    if (navigator.appName !="Netscape") tmp.close();
  }
  oPopupWin=window.open(page, "IntlPopup",
     "alwaysRaised=1,dependent=1,height=" + height + 
     ",location=0,menubar=0,personalbar=0,scrollbars=1,status=0,toolbar=0,width=" +
     width + ",resizable=0"); 
  return !oPopupWin; 
}

