function popup_centree(adresse,nomFenetre,largeur,hauteur,param)
{
	var position_horizontale = (screen.width - largeur) / 2;
	var position_verticale = (screen.height - hauteur) / 2;

	// on ouvre notre popup
	neo = window.open( adresse, nomFenetre, 'height=' + hauteur + ', width=' + largeur + ', top=' + position_verticale + ', left=' + position_horizontale + param );

	// si la méthode focus existe
	if(neo.window.focus)
	{neo.window.focus();}
}

function clignote1(){
	document.getElementById('resv').style.visibility = 'hidden';
	window.setTimeout("clignote2()",250);
}

function clignote2(){
	document.getElementById('resv').style.visibility = '';
	window.setTimeout("clignote1()",750);
}