function popupCorrespondants(myQuartier)
{
	var width = 350;
	var height = 600;
	var top = (screen.height-height)/2;
	var left = (screen.width-width)/2;
	
	var options = 'status=0,toolbar=0,location=0,menu=0,scrollbars=1,width='+width+',height='+height+',top='+top+',left='+left
	popup = window.open("index.php?outils=correspondants#"+myQuartier,'',options);
	popup.focus();
}

function popupQuiFaitQuoi()
{
	var width = 715;
	var height = 450;
	var top = (screen.height-height)/2;
	var left = (screen.width-width)/2;
	
	var options = 'status=0,toolbar=0,location=0,menu=0,scrollbars=0,width='+width+',height='+height+',top='+top+',left='+left
	popup = window.open('popup_quifaitquoi.html','',options);
	popup.focus();
}

function popupMentionsLegales()
{
	var width = 400;
	var height = 300;
	var top = (screen.height-height)/2;
	var left = (screen.width-width)/2;
	
	var options = 'status=0,toolbar=0,location=0,menu=0,scrollbars=0,width='+width+',height='+height+',top='+top+',left='+left
	popup = window.open('credits.html','',options);
	popup.focus();
}


