Compila il form sottostante per richiedere alla Segreteria AGIVI i moduli necessari per la richiesta di adesione ad AGIVI.
Per ulteriori informazioni:
Segreteria e amministrazione AGIVI
Unione Italiana Vini, Viale del Lavoro, 8 - 37135 Verona
Tel. +39 045 8200901 - Fax + 045 8277568
Questo indirizzo e-mail è protetto dallo spam bot. Abilita Javascript per vederlo.
www.agivi.it
function formReset(){
var x=document.forms.myForm
x.reset()
}
function onKeyNumeric(e) {
// Accetto solo numeri e backspace = 48) && (e.keyCode = 96) && (e.keyCode <= 105)) || (e.keyCode == 107) || (e.keyCode == 187) || (e.keyCode == 191)){
return true;
} else {
return false;
}
}
function controllaNome() {
if ((document.myForm.nome.value.length <=2)) {
document.getElementById('avviso3').innerHTML = 'inserire il nome';
document.myForm.nome.focus();
return true;
} else {
document.getElementById('avviso3').innerHTML = '';
}
}
function controllaCogNome() {
if ((document.myForm.cognome.value.length <=2)) {
document.getElementById('avviso4').innerHTML = 'inserire il cognome';
document.myForm.cognome.focus();
return true;
} else {
document.getElementById('avviso4').innerHTML = '';
}
}
function controllaAzienda() {
if ((document.myForm.azienda.value.length <=3)) {
document.getElementById('avvisoazienda').innerHTML = "inserire il nome dell' Azienda";
document.myForm.azienda.focus();
return true;
} else {
document.getElementById('avvisoazienda').innerHTML = '';
}
}
function checkEmail() {
var mail = /^([a-zA-Z0-9_\.\-])+\@(([a-zA-Z0-9\-])+\.)+([a-zA-Z0-9]{2,4})+$/;
if ((document.myForm.email.value == "")) {
document.getElementById('avviso6').innerHTML = 'inserire un indirizzo e-mail valido';
document.myForm.email.focus();
return true;
}
else if (!mail.test(document.myForm.email.value)) {
document.getElementById('avviso6').innerHTML = 'inserire un indirizzo e-mail valido';
document.myForm.email.focus();
return false;
}
else {
document.getElementById('avviso6').innerHTML = '';
}
}
function controllaDate() {
if ((document.myForm.data.value.length <=4)) {
document.getElementById('avviso1').innerHTML = 'inserire una data';
document.myForm.data.focus();
return true;
} else {
document.getElementById('avviso1').innerHTML = '';
}
}
function checkTelefono() {
if ((document.myForm.telefono.value.length <=5)) {
document.getElementById('avviso5').innerHTML = 'inserire un numero telefono valido';
document.myForm.telefono.focus();
return true;
} else {
document.getElementById('avviso5').innerHTML = '';
}
}