
function emailinfo(user, domain, suffix,user2, domain2, suffix2){
var user;
var domain;
var suffix;
var user2;
var domain2;
var suffix2;

document.write('<table width="130" border="0" cellpadding="0" cellspacing="0"><tr><td><a class="neri" href="' + 'mail' + 'to:' + user + '@' + domain + '.' + suffix +'">' + user + '</a></td><td><img src="images/eta.gif" border=0 alt="clicca"></td> <td><a class="neri" href="' + 'mail' + 'to:' + user + '@' + domain + '.' + suffix +'">levantebus.com</a></td></tr></table>');

}

function validacontatti(t) {
    if (t.nome.value == "") {
		alert("Campo nome obbligatorio");
		t.nome.focus();
		return (false);
  	}
  		if (t.telefono.value == ""){
		alert("Numero telefono obbligatorio");
		t.telefono.focus();
		return (false);
  	}
	if (t.email.value == "") {
		alert("Indirizzo email obbligatorio");
		t.email.focus();
		return (false);
  	}
  		
  	if (t.accetta.checked) {
		//return (true);  
	} else {
		alert("Devi accettare la legge sulla privacy");
		return (false);
	}
 	
	return (true);
  }
