//******************************//
// POPUP POUR LES PLANS         //
//******************************//
function open_fullscreen(location,name){
	var largeur=840;  // Math.floor((screen.width)*80/100);
	var hauteur=580; // Math.floor((screen.height)*80/100);
	var param='height='+hauteur+',width='+largeur+',top=' + ((screen.height-hauteur)/2) + ',left=' + ((			screen.width-largeur)/2) + ',scrollbars=yes';
	window.open(location,name,param);
}

function open_popup(lien,fenetre,width,height,param){
	var left=(screen.availWidth-width)/2;
	var top=(screen.availHeight-height)/2;
	if (top <0) top=0;
	if (param!='') param=','+param;
	var fen=window.open(lien,fenetre,'top='+top+',left='+left+',width='+width+',height='+height+param);
	if(!fen.opener) fen.opener = self;
	return false;
}

