




	function GoogleSearch(q,count,offset,lr,hl,source,callback){
		this.key="ABQIAAAAAlRywzJLy-CeZ7kQAytT-BTCUfcOyiurXvuBA2zuAfuITP9FnRTvGkWccCO03SXDDMvq7HJghfP3kw";
		this.callback=callback;
		this.count=count;
		this.offset=offset;
		this.lr=lr;
		this.hl=hl;
		this.query=q;
		this.source=source;
		
	}
	GoogleSearch.prototype.getWebUrl=function(){
		var google_q="http://ajax.googleapis.com/ajax/services/search/"+this.source+"?v=1.0&rsz=large&callback="+this.callback+"&key="+this.key;
		var google_params="&start="+this.offset+"&lr="+this.lr+"&hl="+this.hl+"&q="+this.query;
		return google_q+google_params;
		
	}
	
