function Email() {
       var email = document.modulo.email.value;
           if ((email.indexOf("@") == (-1)) || (email == "") || (email == "undefined")) {
                alert("inserire un indirizzo email valido");
                document.modulo.email.focus();
           }
           else {
                location.href="mailto:popoli@popoli.info?Subject=" + "Popoli Mailing List" + "&Body=" + "Prego inserire nella mailing list di POPOLI  il seguente indirizzo: " + email;
document.modulo.email.value = "";
           }
    }

function info() {
	top.frames[2].location.href="mailinglist.html";
		}

<!-- popoli@popoli.info -->
