	function getRSS(divid, rsstype) {

		$.ajax({

			type: 'get',

			url: 'rss_feed.php',

			dataType: 'html',

			data: {type:rsstype },

			success: function(data){

				//alert(data);

				div=document.getElementById(divid);

				if (div) {

					div.innerHTML=data;

				}

			},

			error: function(){

				//alert("error");

			},

			complete: function(){

				//alert("complete");

			}

		});

	}
