function cambia_messragionesociale(){ var cont; cont= document.getElementById("messragionesociale"); if(cont.value=="Ragione Sociale"){ cont.value=""; } } function out_messragionesociale() { var cont; cont= document.getElementById("messragionesociale"); if(cont.value==""){ cont.value="Ragione Sociale"; } } function cambia_messnome(){ var cont; cont= document.getElementById("messnome"); if(cont.value=="Nome"){ cont.value=""; } } function out_messnome() { var cont; cont= document.getElementById("messnome"); if(cont.value==""){ cont.value="Nome"; } } function cambia_messcognome(){ var cont; cont= document.getElementById("messcognome"); if(cont.value=="Cognome"){ cont.value=""; } } function out_messcognome() { var cont; cont= document.getElementById("messcognome"); if(cont.value==""){ cont.value="Cognome"; } } function cambia_messemail(){ var cont; cont= document.getElementById("messemail"); if(cont.value=="E-mail"){ cont.value=""; } } function out_messemail() { var cont; cont= document.getElementById("messemail"); if(cont.value==""){ cont.value="E-mail"; } } function cambia_messtelefono(){ var cont; cont= document.getElementById("messtelefono"); if(cont.value=="Telefono"){ cont.value=""; } } function out_messtelefono() { var cont; cont= document.getElementById("messtelefono"); if(cont.value==""){ cont.value="Telefono"; } } function cambia_messoggetto(){ var cont; cont= document.getElementById("messoggetto"); if(cont.value=="Oggetto"){ cont.value=""; } } function out_messoggetto() { var cont; cont= document.getElementById("messoggetto"); if(cont.value==""){ cont.value="Oggetto"; } } function cambia_messaggio(){ var cont; cont= document.getElementById("messaggio"); if(cont.value=="Messaggio"){ cont.value=""; } } function out_messaggio() { var cont; cont= document.getElementById("messaggio"); if(cont.value==""){ cont.value="Messaggio"; } }