﻿

function SendEmailReport(emailAddress,name)
{
    $.post('/AjaxProxy/Email.aspx', {email: emailAddress, flname: name,method:'SendContact'},
        function(data) {
            $('#maillist-box').hide();
            $('#mailresult-box').show();
        }
    );
}
