﻿
function SendPreContractEmail() {
   SalesService2.SendPreContractEmail(onSuccessSendMoreInfoEmail, onErrorSendMoreInfoEmail)
}


function SendSalesRoomResultsEmail() {
    SalesService2.SendSalesRoomResultsEmail(onSuccessSendMoreInfoEmail, onErrorSendMoreInfoEmail)
}





function onSuccessSendMoreInfoEmail(result) {

    if (result == "true") {
      //  alert('Request has submitted!');
        

    }
    else
        alert('Request fail to send!');
}

function onErrorSendMoreInfoEmail(error) {
    alert(error.message);
}

