function SelectYear(selectTag,DateFrom,DateTo){
	var valoreselect=selectTag.options[selectTag.selectedIndex].value;
	
	if (valoreselect==''){
		DateFrom.value = "";
		DateTo.value = "";
	}
	else
	{
		DateFrom.value = "01/01/"+valoreselect;
		DateTo.value = "31/12/"+valoreselect;
	}
}


function VerificaData(){
	alert("ciao");
	return false;
	
}



