var maps;

function googleMapsPrestilogis()
{
	this.map		= null;
	this.Lat		= 50.430981;
	this.Lng		= 2.830085;
	this.Zoom		= 17;
	
	if (!GBrowserIsCompatible()) {
		return false;
	}
	
	this.map = new GMap2(document.getElementById("google_maps"));
	maps = this.map;
	this.map.addControl(new GLargeMapControl());
	
	this.initMap = function()
	{
		
		var position, marker, myHTML;
		
		// on position la carte
		position = new GLatLng(this.Lat, this.Lng);
		this.map.setCenter(position, this.Zoom);
		
		// on position le marqueur
		position = new GLatLng(this.Lat, this.Lng);
		marker = new GMarker(position);
		
		// on crée l'info-bulle
		myHTML = "<p align='left'><b>Prestilogis</b><br /><br />20, rue Victor Hugo<br />B.P. 139<br />62303 LENS</p>";
		GEvent.addListener(marker, "click", function () {
									var myHtml = "<p align='left'><b>Prestilogis</b><br /><br />20, rue Victor Hugo<br />B.P. 139<br />62303 LENS</p>";
									maps.openInfoWindowHtml(position, myHtml);
									});

		this.map.addOverlay(marker);
		this.map.openInfoWindowHtml(position, myHTML);
	}
}