var Default = {

	url : "/default.ajax.ashx",

	SetMapSessionValues : function(lat,lon,zoom)
	{
		 if (window.Ajax) Ajax.run({url:this.url, async:true, headers:{'method':'SetMapSessionValues'}, callback:this.SetMapSessionValues.slice(3,3), loading:false,  send:{'lat':lat,'lon':lon,'zoom':zoom}});
	},

	SetDetail : function(x,y)
	{
		 if (window.Ajax) Ajax.run({url:this.url, async:true, headers:{'method':'SetDetail'}, callback:this.SetDetail.slice(2,2), loading:true, loadingtext:'Loading detail', send:{'x':x,'y':y}});
	}

};