// JavaScript Document
 function LoadDynamicFeedControl() {
      var feeds = [
	{title: 'Notas de interes',
	 url: 'http://www.corporinoquia.gov.co/sitioweb/index.php/rss/feed/notas?????????????'
	}];
      var options = {
        
        title : "<a href='http://www.corporinoquia.gov.co/sitioweb/index.php/esl/Menu/Notas-de-Interes' title='Notas de interes'>Notas de interes</a>"
		
      }

      new GFdynamicFeedControl(feeds, 'feed-control', options);
    }
    // Load the feeds API and set the onload callback.
    google.load('feeds', '1');
    google.setOnLoadCallback(LoadDynamicFeedControl);