﻿function ReceiveNews() {
    var utcFrom = $("#LastUpdateUTC").text();
    //alert(utcFrom);

    $.ajax({
        url: "/Account/ProfileNews?utcFrom=" + utcFrom,
        type: "GET",
        cache: false,
        dataType: "json",
        success: function (msg) {
            //alert(msg);
        }
    });
}
