function setInteressato() {
	
	var selectProdotti = document.getElementById('select_interessato');
	var productLabel = selectProdotti.options[selectProdotti.selectedIndex].text;
	$('product').value = selectProdotti.options[selectProdotti.selectedIndex].value;
	$('productDescription').value = productLabel;
	$('productDefault').value = selectProdotti.options[selectProdotti.selectedIndex].value;
	$('productDescriptionDefault').value = productLabel;
}

function setFlagAltroSi() {
	var flagAltro = document.getElementById('flagAltroSi');
	var colore = document.getElementById('colore');
	if((flagAltro.checked)&&(colore.value=="azzurro")){
	    $('qualificationComments').value = "TU";
	}
	if((flagAltro.checked)&&(colore.value=="rosso")){
	    $('qualificationComments').value = "TR";
	}
}

function setFlagAltroNo() {
	var flagAltro = document.getElementById('flagAltroNo');
	if (flagAltro.checked){
	      $('qualificationComments').value ="NO";
	}
}
