function switch_onglet(etat, onglet)
{
	if (etat)
	{
		document.getElementById('onglet_li_'+onglet).style.backgroundImage="url(/img/onglet_fonce_d.gif)";
		document.getElementById('onglet_a_'+onglet).style.backgroundImage="url(/img/onglet_fonce_g.gif)";
		document.getElementById('onglet_a_'+onglet).style.color="white";
	}
	else
	{
		document.getElementById('onglet_li_'+onglet).style.backgroundImage="url(/img/onglet_clair_d.gif)";
		document.getElementById('onglet_a_'+onglet).style.backgroundImage="url(/img/onglet_clair_g.gif)";
		document.getElementById('onglet_a_'+onglet).style.color="black";
	}
}



// Ouvre une popunder
function utiliserCodePromo(url)
{
	var top=(screen.height-780)/2;
	var left=(screen.width-1024)/2;

	// Ouvre la popunder
	codepromo = window.open(url, 'codepromo','top='+top+',left='+left+',toolbar=no,status=no,scrollbars=yes,resizable=yes,width=700,height=500');

	// On cache la popunder
	codepromo.blur()

	// Redonne le focus a la fenetre ouvrante
	window.focus()

	//codepromo.close();
}

