function getUpperFeed(src, limit, target)
{
	/* Forming the query: */
	var query = "select * from feed where url='"+src+"' LIMIT "+limit;
	/* Forming the URL to YQL: */
	var url = "http://query.yahooapis.com/v1/public/yql?q="+encodeURIComponent(query)+"&format=json&callback=?";
	$.getJSON(url,function(data){
    stage = $(target);
    var html = '';
	var hasImage;
	var width;
	$.each(data.query.results.item || data.query.results.entry,function(){
		hasImage = false
		try {
			
			html += '<div class="newsItem">';
			
			if (this.enclosure != undefined) {
				html += '<div style="float:left;width:155px;margin:0;"><img src="'+this.enclosure.url+'" alt="'+this.title+'"></div>'
				hasImage = true;
			}
			
			if (hasImage == true) {
				width=245
			}
			else {
				width=400
			}
			
			html += '<div class="details" style="width:'+width+'px"><h5 style="font-size: 13px; font-weight: bold; margin:0; padding: 0 0 5px 0;">'+this.title+'</h5>';
			html += '<p style="font-size: 13px; color: #999;margin:0">'+this.description.substring(0,120)+'...</p>';
			html += '<a href="'+this.link+'" class="button arrowButton" target="_blank"><b><b>Read more</b></b></a></div>';
			html += '</div>';

		}
		catch(e){
			/* Notifying users if there are any problems with their handler functions: */
			return false;
		}
	})
	html += '<h5 style="float:left;font-size: 13px; font-weight: bold; margin:0; padding:10px 10px 0 0;">Untuk artikel lain, kunjungi </h5><a href="http://Latest.YourSingapore.com/id" class="button arrowButton" target="_blank"><b><b>Latest.YourSingapore.com</b></b></a>';
    stage.append(html);
	});
}
