	function clearNome(){
		if (document.form1.nome.value =='Nome e cognome*'){			
			document.form1.nome.value = '';
		}
	}
	function restoreNome(){
		if (document.form1.nome.value ==''){			
			document.form1.nome.value = 'Nome e cognome*';
		}
	}
	
	function clearEmail(){
		if (document.form1.email.value =='email*'){			
			document.form1.email.value = '';
		}
	}
	function restoreEmail(){
		if (document.form1.email.value ==''){			
			document.form1.email.value = 'email*';
		}
	}
	
	
	function clearTelefono(){
		if (document.form1.telefono.value =='telefono'){			
			document.form1.telefono.value = '';
		}
	}
	function restoreTelefono(){
		if (document.form1.telefono.value ==''){			
			document.form1.telefono.value = 'telefono';
		}
	}
	
	function clearUsername(){
		if (document.form1.username.value =='username'){			
			document.form1.username.value = '';
		}
	}
	function restoreUsername(){
		if (document.form1.username.value ==''){			
			document.form1.username.value = 'username';
		}
	}
	
	function clearPassword(){
		if (document.form1.password.value =='password'){			
			document.form1.password.value = '';
		}
	}
	function restorePassword(){
		if (document.form1.password.value ==''){			
			document.form1.password.value = 'password';
		}
	}
	
	
	function clearTextarea(){
		if (document.form1.messaggio.value =='Inserire dettagli richiesta informazioni:'){			
			document.form1.messaggio.value = '';
		}
	}
	function restoreTextarea(){
		if (document.form1.messaggio.value ==''){			
			document.form1.messaggio.value = 'Inserire dettagli richiesta informazioni:';
		}
	}
		
	
	function clearRicerca(){
		if (document.form2.testo_ricerca.value =='Cerca nel sito'){			
			document.form2.testo_ricerca.value = '';
		}
	}
	function restoreRicerca(){
		if (document.form2.testo_ricerca.value ==''){			
			document.form2.testo_ricerca.value = 'Cerca nel sito';
		}
	}

