function OuvreCentre(page,largeur,hauteur,options) {  //// pop up centrée
			var top=(screen.height-hauteur)/2;
			var left=(screen.width-largeur)/2;
			window.open(page,"","top="+top+",left="+left+",width="+largeur+",height="+hauteur+","+options);
		}


function popupcentree(page,largeur,hauteur,options)
{
var top=(screen.height-hauteur)/2;
var left=(screen.width-largeur)/2;
window.open(page,"","top="+top+",left="+left+",width="+largeur+",height="+hauteur+","+options);
}
function affiche(page,largeur,hauteur,options)
{
var top=(screen.height-hauteur)/2;
var left=(screen.width-largeur)/2;
window.open(page,"","top="+top+",left="+left+",width="+largeur+",height="+hauteur+","+options);
}
function afficheMaxi(chemin) //// pop up des images cliquables
	{
	i1 = new Image;
	i1.src = chemin;
	html = '<HTML><HEAD><TITLE>La Perifeerique</TITLE></HEAD><BODY LEFTMARGIN=0 MARGINWIDTH=0 TOPMARGIN=0 MARGINHEIGHT=0 onBlur=\'window.close();\'><CENTER><IMG SRC="'+chemin+'" BORDER=0 NAME=imageTest onLoad="window.resizeTo(document.imageTest.width+14,document.imageTest.height+32)" onClick=\"self.close()\"></CENTER></BODY></HTML>';
	popupImage = window.open('','_blank','toolbar=0,location=0,directories=0,menuBar=0,scrollbars=0,resizable=1');
	popupImage.document.open();
	popupImage.document.write(html);
	popupImage.document.close()
	};
function afficheMaxiCopy(chemin,copyright) //// pop up des images cliquables
	{
	i1 = new Image;
	i1.src = chemin;
	html = "<HTML><HEAD><TITLE>M&eacute;diatis R&eacute;gion Aquitaine - &copy; "+copyright+" - Clic Image To Close</TITLE></HEAD><BODY LEFTMARGIN=0 MARGINWIDTH=0 TOPMARGIN=0 MARGINHEIGHT=0 onBlur=\"window.close();\"><CENTER><IMG SRC=\""+chemin+"\" BORDER=0 NAME=imageTest onLoad=\"window.resizeTo(document.imageTest.width+14,document.imageTest.height+32)\" onClick=\"self.close()\"></CENTER></BODY></HTML>";
	popupImage = window.open('','_blank','toolbar=0,location=0,directories=0,menuBar=0,scrollbars=0,resizable=1');
	popupImage.document.open();
	popupImage.document.write(html);
	popupImage.document.close()
	};



