﻿
function SendMail_onclick() {

    var sur = document.getElementById("email_NomeCognome").value;
    var tel = document.getElementById("email_Cellulare").value;
    var ema = document.getElementById("email_Email").value;
    var Msg = document.getElementById("email_Richiesta").value;

    if (!ema.match(/^([a-zA-Z0-9_\.\-])+\@(([a-zA-Z0-9\-])+\.)+([a-zA-Z0-9]{2,4})+$/)) {
        document.getElementById("email_respons").innerHTML = "esempio@prova.it";
        document.getElementById("email_respons").style.color = '#D90000';
        document.ema.focus();
        return false;
    } else {
        document.getElementById("email_respons").innerHTML = "Invio in corso.....";
        document.getElementById("email_respons").style.color = '#339966';

    }
    window.location.href = "../../Information/mail/Send.aspx?sur=" + sur + "&tel=" + tel + "&ema=" + ema + "&Msg=" + Msg;
    // window.location.href = "http://www.salivolivela.it/Information/mail/Send.aspx?sur=" + sur + "&tel=" + tel + "&ema=" + ema + "&Msg=" + Msg;
}




//http://www.salivolivela.it/Information/mail/Send.aspx



//    esempio@prova.it

