/*function rssFeed()
	{
	var url='rssfeedfetch.php?do=rss';
	//alert(url);
	new Ajax.Request(url,{
			method: 'get',
			onLoading: function(transport)
				{
				//$('MsgBox').show().update('Fetching Data ...');
				},
			onSuccess: function(transport)
				{
				var dr = transport.responseText;
				//alert(dr);
				document.getElementById('marqueecontainer').innerHTML = dr;
				},
			 onFailure: function(transport)
			 {
				 // when the request fails
				 alert('The request failed..');
			 },
			 onException: function(err)
			 {
				 // When an exception is encountered while executing the callbacks
				 alert('Exception');
			 }
			 });
	}*/

function rssFeedInner()
	{
	var url='rssfeedfetch.php?do=rssinner';
	//alert(url);
	new Ajax.Request(url,{
			method: 'get',
			onLoading: function(transport)
				{
				//$('MsgBox').show().update('Fetching Data ...');
				},
			onSuccess: function(transport)
				{
				var dr = transport.responseText;
				alert(dr);
				document.getElementById('rssinner').innerHTML = dr;
				},
			 onFailure: function(transport)
			 {
				 // when the request fails
				 alert('The request failed..');
			 },
			 onException: function(err)
			 {
				 // When an exception is encountered while executing the callbacks
				 alert('Exception');
			 }
			 });
	}

