var styleDisplayWhenVisible='inline';

/**
*Imposta la proprietà diplay di un elemento div passato come parametro
**/
function toggleShowEvento(evId, num){

    ele=document.getElementById(evId);
    if(!(ele!=null && ele.style.display!=null)){
        return false;
    }
    if(ele.style.display!='none'){
        ele.style.display='none';
    }else{
        ele.style.display=styleDisplayWhenVisible;
    }

    return true;
   }

  /**
  * Apre una finestra di popup
  **/
  function Popup(apri) {
   var w = 520;
   var h = 500;
   var l = Math.floor((screen.width-w)/2);
   var t = Math.floor((screen.height-h)/2);
      window.open(apri,"","width=" + w + ",height=" + h + ",top=" + t + ",left=" + l + ",scrollbars=yes, status=no");
 }
