//Funzione per l'apertura delle pop up
//I parametri vengono passati dalla pagina
  
function popUp (page, name, width, height, scrollbar, resize){
  var popup = window.open(page, name,'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=' + scrollbar + ',resizable= ' + resize + ',width=' + width +',height= '+ height + ',left=0,top=0');
  popup.focus();
}