if (listings && listings.length > 0) {
				 var sKeyword = SearchEngineKeyword.split(" ");
				 for (i = 0; i < listings.length; i++) {
					var title = listings[i].title;
					var description = listings[i].description;
					for (j = 0; j < sKeyword.length; j++) {
					  if (sKeyword[j].length >= 3) {
						var _kExp = new RegExp(sKeyword[j], "gi");
						description = description.replace(_kExp, "<b>" + sKeyword[j] + "</b>");
						title = title.replace(_kExp, "<b>" + sKeyword[j] + "</b>");
					  }
					}
					document.write('<a href="' + listings[i].uri + '" target="_blank" onMouseOver="window.status=\'' +  listings[i].url + '\';return true;" onMouseOut="window.status=\' \';return true;">' + title + '</a><br>' + description + '<br>http://' + listings[i].url + '<br><br>');
				 }
			    }