var ZERO_TIMESTAMP_MILLISECONDS = new Date(1899,11,30).getTime(); // MSDN documentation for IFeedItem::PubDate (http://msdn.microsoft.com/en-us/library/ms685800(VS.85).aspx)
// The interface returns 0 if pubdate is not specified in source and this constant represents the representative date for value 0 as per the above documentation
// Queueing done. Now check if any of the feed's data in feed data container must be removed (ie feed no longer exists in chosen folder)
for (var tmpFeedGUID in g_currentFeedData)
{
if ( g_currentFeedData[tmpFeedGUID] !== null && (g_feedsCurrentlySelected[tmpFeedGUID] == undefined || g_feedsCurrentlySelected[tmpFeedGUID] == null) ) // Data for feed Not already deleted, and feed doesnt exist in folder currently selected
{
g_currentFeedData[tmpFeedGUID] = null;
bRefreshMainArray = true;
}
}
if ( bRefreshMainArray )
{
g_returnFeed = null;
g_returnFeed = new makeFeed("","","");
for (var i in g_currentFeedData)
{
if ( g_currentFeedData[i] !== undefined && g_currentFeedData[i] !== null )