﻿function GetRSS(container, url, template, recordCount)
{
 $('#' + container + 'c').empty();
 $('#' + container + 'p').show();
 $.ajax({
      type: "POST",
      url: "http://www.hkguideguide.com/SOAP/ProxyAsync.asmx/GetRSS",
      data: "{'url':'" + url + "','count':" + recordCount + ",'cacheDuration':'0'}",
      contentType: "application/json; charset=utf-8",
      dataType: "json",
      success: function(msg) {
        ApplyTemplate(container, msg, template);
      }
  });
}

function ApplyTemplate(container, msg, template) {
  $('#' + container + 'p').hide();
  $('#' + container + 'c').setTemplateURL(template,null,{ filter_data: false});
  $('#' + container + 'c').processTemplate(msg);
}

