// Call the Pollster API Chart Method
// http://elections.huffingtonpost.com/pollster/api#chart
function getChart(slug) {
  var url = "http://elections.huffingtonpost.com/pollster/api/charts/"+slug+".json";
  var resp = UrlFetchApp.fetch(url);
  return JSON.parse(resp.getContentText());
}