function ouvrirConditionsOffre(){
	var Dessus=(screen.height/2)-650;
	var Gauche=(screen.width/2)-500;
	window.open("/style1/HTML/popUps/ConditionOffre.html", "conditionsOffre", "height=650, width=500, top="+Dessus+", left="+Gauche+", toolbar=no, menubar=no, location=no, resizable=no, scrollbars=yes, status=no");
}
$(document).ready(function(){
	document.getElementById("conditionsOffre").onclick = function(){
		ouvrirConditionsOffre();
	}
});