display_google_maps=
{
	self:this,
	gMap:null,
	map:null,
	point:null,
	marker:null,
	
	show:function(id)
	{
		if(!id)
			id='google_maps';
	
		this.map=document.getElementById(id);

		this.gMap=new GMap2(this.map);
		this.gMap.enableContinuousZoom();
		this.gMap.setUIToDefault();
		
		this.point = new GLatLng(49.77446,6.72785);
		this.marker = new GMarker(this.point);
		
		this.gMap.setCenter(this.point,15);
		this.gMap.addOverlay(this.marker);	
	},
}
