	if (listings != null && listings.length > 0) {	
	for (i = 0; i < listings.length; i++) {	
	var title = listings[i].title;	
	if (listings[i].title.length > 40)	title = listings[i].title.substring(0, 40) + "...";	
	document.write("<b><a href='" + listings[i].uri +"' target='_blank'>" + title + "</a></b><br>");	
	var desc = listings[i].description;	if (listings[i].description.length > 200)	desc = listings[i].description.substring(0, 200) + "...";	
	document.write(desc + "<br>");	
	document.write("<a href='" + listings[i].uri +"' target='_blank' style=\"color:#009900; \">" + listings[i].url + "</a>");
	if (i < listings.length-1)	
	document.write("<br><br>"); }	
	}