function addCriterio(criteri){
	if (window.document.form.criteri!=null)
			window.document.form.criteri.value=criteri;
	formSubmit();
}

function delCriterio(criterio){
	if (window.document.form.elimina!=null)
			window.document.form.elimina.value=criterio;
	formSubmit();
}


function CambiaLivello(criterio,livello){
	if (eval("window.document.form.livello_"+criterio)!=null)
			eval("window.document.form.livello_"+criterio+".value="+livello);
	formSubmit();
}

function CambiaLivelloOP(criterio,livelloOP){
	if (eval("window.document.form.livelloOP_"+criterio)!=null)
			eval("window.document.form.livelloOP_"+criterio+".value="+livelloOP);
	formSubmit();
}


function Ricerca(){
	if (window.document.form.ricerca!=null)
			window.document.form.ricerca.value=1;
	formSubmit();
}

function numeric(msg,numero){
	var valore =numero.value;
        var car;
	for (var c = 0; c < valore.length; c++){
		car = valore.substring(c, c+1);
		if ((car < '0') || (car > '9')){
			alert(msg);
			numero.focus();
		return false;
		}
	}
}
