// JavaScript Document

function show_news(div,query,title) {

	 //alert(query);
	 
	 var options = {
		   "queryList" : [
			{
				"title" : title,
         		"q" : query
			}
			],
		   
		   "format" : "300x250",
		   "linkTarget" : "_blank"
	 }
	 
	var content = document.getElementById(div);
	content.innerHTML="";
	var newsShow = new google.elements.NewsShow(content,options);
}
