/**** Popup *****/

function OpenPopup(name,width, height,resizable)
{
	var PosX = ( screen.availWidth - width ) / 2; 
	var PosY = ( screen.availHeight - height ) / 2; 
    mypopup = window.open(name,"Map","menubar=0,resizable=" + resizable + ",width=" + width + ",height=" + height + ",top="+ PosY + ",left=" +PosX ); 
}

//Popup Mentions Légales
function popup_legaltext(htmlfile){
  var URL = htmlfile;
	
	var PosX = ( screen.availWidth - 663 ) / 2; 
	var PosY = ( screen.availHeight - 510 ) / 2;
	 
	window.open(URL,null,"height=510,width=663,status=no,toolbar=no,menubar=no,location=no,scrollbars=yes,top="+ PosY + ",left=" +PosX );
}
