function aprifinestra(URL) {

	var oFinestra;
	oFinestra=window.open(URL, "Muttillo", "width=630, height=630, top=10, left=10, resizable=yes");
	oFinestra.focus();

}

function iscrizione_newsletter() {
    oNickname=document.getElementById('nickname');
    oEmail=document.getElementById('email');

    if (oNickname.value=='') {
	    alert ("Scrivi il tuo nome");
	    oNickname.focus();
	    return false;
    }

    if ((oEmail.value.length<5)) {
	    alert ("Formato email non valido");
	    oEmail.focus();
	    return false;
    }

    if (oEmail.value.indexOf("@")==-1) {
	    alert ("Formato email non valido");
	    oEmail.focus();
	    return false;
    }

    return true;
}