function copiadati() {
	nome = document.getElementById('infosped[nome]');
	cognome = document.getElementById('infosped[cognome]');
	destinatario = document.getElementById('infosped[destinatario]');
	indirizzo = document.getElementById('infosped[indirizzo_spedizione]');
	citta = document.getElementById('infosped[citta_spedizione]');
	cap = document.getElementById('infosped[cap_spedizione]');
	provincia = document.getElementById('infosped[provincia_spedizione]');
	nazione = document.getElementById('infosped[nazione_spedizione]');
	
	Srag_soc = document.getElementById('infofatt[ragione_sociale]');
	Sindirizzo = document.getElementById('infofatt[indirizzo_fatturazione]');
	Scitta = document.getElementById('infofatt[citta_fatturazione]');
	Scap = document.getElementById('infofatt[cap_fatturazione]');
	Sprovincia = document.getElementById('infofatt[provincia_fatturazione]');
	Snazione = document.getElementById('infofatt[nazione_fatturazione]');
	
	if (nome.value) Srag_soc.value=nome.value+' '+cognome.value;
	else Srag_soc.value=destinatario.value;
	Sindirizzo.value=indirizzo.value;
	Scitta.value=citta.value;
	Scap.value=cap.value;
	Sprovincia.value=provincia.value;
	Snazione.value=nazione.value;
}