
function addMacchina(lista, macchina){
	//alert(class);
	ul=document.getElementById(lista);
	var li = document.createElement('li');
	var strong = document.createElement('strong');
	li.onclick = function(){delMacchina(lista, macchina); return false};
	value = document.createTextNode(macchina);
	
	strong.appendChild(value);
	li.appendChild(strong);
	ul.appendChild(li);
}

function delMacchina(lista, macchina){
	ul=document.getElementById(lista);
	li=ul.getElementsByTagName('li');
	for(i=0; i<li.length;i++){
		if (li[i].firstChild.innerHTML==macchina){
			ul.removeChild(li[i]);
			break;
		}
	}
}

function on(id){
	document.getElementById(id).style.display="block";
}

function off(id){
	document.getElementById(id).style.display="none";
}

function resetContatto(){
	document.getElementById('consenso').style.display="block";
	document.getElementById('risposta').style.display="none";
}

function prepara_checkBox(field){
	//alert(field.length);
	var risposta="";
	for(i=0; i<field.length; i++) {
		//alert(field[i].value);
		if (field[i].checked)
    		risposta+=field[i].value+"\n";
  	}
	return(risposta);
}
