<!--
	function apriModale(url, height, width){
		window.open(url, '', 'height='+height+', width='+width+', toolbar=no');
	}

 	function apriModaleScroll(url, height, width){
		window.open(url, '', 'height='+height+', width='+width+', toolbar=no, scrollbars=yes');
	}

   function refreshControlla(messaggio){
      location.replace('./index.php?pagina=./php/gen_area.php&messaggio='+messaggio);
   }

   function refreshAction(pgm){
      window.open(pgm);
//      document.forms[1].action = './index.php?pagina='+pgm;
//      document.forms[1].submit(); 
   }

   function refreshPre(url,tipo){
      document.forms[0].action = url+'?'+'tipo_refresh='+tipo;
      document.forms[0].submit();
   }

   function refreshIns(pgm,campo1,campo2,campo3,campo4,conta){
      var radioLength = document.forms[0].gruppo.length;
      var radioSelected = "";
      if(radioLength == undefined){
         if(document.forms[0].gruppo.checked){
            radioSelected = document.forms[0].gruppo.value;
         }
      }
      for(var i = 0; i < radioLength; i++) {
         if(document.forms[0].gruppo[i].checked) {
            radioSelected = document.forms[0].gruppo[i].value;
         }
      }
      if (pgm=='categoria_ins'){
         document.forms[0].action = 'categoria_ins.php?'+'ordine='+radioSelected;
      }else if(pgm=='squadra_ins'){
         document.forms[0].action = 'squadra_ins.php?'+'categoria='+campo1+'&torneo='+campo2+'&squadra_2='+radioSelected;
      }else if(pgm=='roster_ins'){
         document.forms[0].action = 'roster_ins.php?'+'categoria='+campo1+'&squadra='+campo3+'&vardoppia='+radioSelected;
      }else if(pgm=='calendario_ins'){
         document.forms[0].action = 'calendario_ins.php?'+'categoria='+campo1+'&torneo='+campo2+'&giornata='+campo4+'&codice_2='+radioSelected;
      }else if(pgm=='avvisi_ins'){
         document.forms[0].action = 'avvisi_ins.php?'+'&progressivo_2='+radioSelected;
      }else if(pgm=='commenti_ins'){
         document.forms[0].action = 'commenti_ins.php?'+'&progressivo_2='+radioSelected;
	  }else if(pgm=='avvisi_ins_prima_squadra'){
         document.forms[0].action = 'avvisi_ins_prima_squadra.php?'+'&progressivo_2='+radioSelected;
      }else{
      }
      document.forms[0].submit();
   }
-->            

