function changeOffer(element) {
	var element = $(element);
	
	if (element.val() == 'FLI000') {
		window.location.href = 'index.php?offer=1';
	}
	
	if (element.val() == 'FLI001') {
		window.location.href = 'index_2.php?offer=2';	
	}
	if (element.val() == 'FLI002') {
		window.location.href = 'index_3.php?offer=3';	
	}
}

function popup(page,largeur,hauteur) {
	var top = (screen.height-hauteur) / 2;
	var left = (screen.width-largeur) / 2;
	
	window.open(page,"","top="+top+",left="+left+",width="+largeur+",height="+hauteur+",toolbar=false,scrollbars=true,resizable=true");
}
	function popup2(page,largeur,hauteur) {
	  var top=(screen.height-hauteur)/2;
	  var left=(screen.width-largeur)/2;
	  window.open(page,"","top="+top+",left="+left+",width="+largeur+",height="+hauteur+",toolbar=no,scrollbars=yes,resizable=yes");
	}