function conferma_cancella(form_id){

	   if(confirm('Sei sicuro di cancellare le voci selezionate?'))
	     	document.getElementById(form_id).submit();

}

/////////////////////////////////////////////////////////////////////////////////
  
function seleziona_tutte(form_id){
	
	f = document.getElementById(form_id);
	
	for(i=0;i<f.length;i++){
		if(f[i].type=='checkbox') f[i].checked=!(f[i].checked);
	};

	return false;

}

/////////////////////////////////////////////////////////////////////////////////

function mostra_campo_email(id, id_to_show){

   value = $F(id);
   
   if(value == 1) Element.hide($(id_to_show));
   if(value == 2) {Element.show($(id_to_show)); }

}

//////////////////////////////////////////////////////////////////////////////////

function changeLocation(){

   val = $F('sel_cat'); 
   window.location = val;

}

//////////////////////////////////////////////////////////////////////////////////

function Popup(apri, w, h)   {

  stile = "top=10, left=10, width="+w+", height="+h+", status=no, menubar=no, toolbar=no, scrollbars=yes";
  window.open(apri,"", stile);

}

