// Java Document
<!--
function Email() {
          var email = 'info@pinino.com';
          var obj = document.f_email.object.value;
          var msg = document.f_email.message.value;
               if ((email.indexOf('@') == -1)) {
                     alert('Inserire un indirizzo Email valido!');
                     document.f_email.email.value = '';
                     document.f_email.email.focus()
               }
               else if (obj == '' || msg == '') {
                     alert('Tutti i campi sono obbligatori!');
                     document.f_email.message.focus()
               }
               else {
                   location.href = 'mailto:' + email + '?Subject=' + obj + '&Body=' + msg;
               }
     }
-->