// ouverture d'ismap google
function site_ismap_google(id_ismap)
{
	var w = 900;
	var h = 700;

	var leftPos = (screen.availWidth-w)-20;
	var topPos = 20
	isPopUp = window.open('_ismap_google.php?id_ismap='+id_ismap,'browser','width='+w+',height='+h+',scrollbars=yes,resizable=yes,titlebar=1,status=0,top=' + topPos + ',left=' + leftPos);
}

function ism_explorateur_googlemaps(lat, lng, zoom, id_contact, adresse_type)
{
	var w = 670;
	var h = 500;
	var leftPos = (screen.availWidth-w)-20;
	var topPos = 20;
	isPopUp = window.open('_ismap_google_small.php?lat='+lat+'&lng='+lng+'&zoom='+zoom+'&id_contact='+id_contact+'&adresse_type='+adresse_type, 'googlemaps', 'width='+w+',height='+h+',scrollbars=yes,resizable=yes,titlebar=1,status=1,top=' + topPos + ',left=' + leftPos);
}

var winNew = null;

function newCenterWindow(pageUrl,xL,xH) {
	ns4 = (document.layers)? true:false;
	ie4 = (document.all)? true:false;
	if (document.all) 
		var xMax = screen.width, yMax = screen.height;
	else
	   if (document.layers)
		var xMax = window.outerWidth, yMax = window.outerHeight;
	else
		var xMax = 640, yMax=480;
		if(navigator.userAgent.indexOf('Gecko')>=0)
			xH +=10;
		var xOffset = (xMax - xL)/2, yOffset = (yMax - xH)/2;
		winNew = window.open(''+pageUrl+'','winNew','width='+xL+',height='+xH+',screenX='+xOffset+',screenY='+yOffset+',top='+yOffset+',left='+xOffset+',scrollbars=yes');
}

