function sendMailPage() { if(document.getElementById("mittente").value == "") { alert('Attenzione: indicare il Vs indirizzo email'); return false; } else if(document.getElementById("destinatario").value == "") { alert('Attenzione: indicare indirizzo email destinatario/i'); return false; } else { //document.forms("frmEmailPage").action = "sendmail.php"; //document.forms("mcannatella@datelt.it").submit(); //apriPagina("sendmail.php","frmEmailPage"); //document.forms("frmEmailPage").action = "sendmail.php"; //document.forms("frmEmailPage").submit(); //document.frmEmailPage.action = "sendmail.php"; document.frmEmailPage.action = "index.php"; return true; } //alert(document.getElementById("mittente").value); } function apriPagina(pagina,nomeform) { document.forms("thisform").action = pagina; document.forms("thisform").submit(); }