ciaocodice:if (societa != "") { stringa_totale = stringa_totale + "Società : " + societa + aCapo; } else { alert("Manca Societa'") return false; } if (indirizzo != "") { stringa_totale = stringa_totale + "Indirizzo : " + indirizzo + aCapo; } if (citta != "") { stringa_totale = stringa_totale + "Città : " + citta + aCapo; } if (telefono != "") { if (telefono==telefono.replace(/[^\d]/gi, '')) { stringa_totale = stringa_totale + "Telefono : " + telefono + aCapo; } else { alert("Solo numeri in Telefono") return false; } } else { alert("Manca Telefono") return false; } if (fax != "") { stringa_totale = stringa_totale + "Fax : " + fax + aCapo; } if (email != "") { stringa_totale = stringa_totale + "E-Mail : " + email + aCapo; } else { alert("Manca Email") return false; }