function ouvrir_annonceur(adresse, incorpore, javascript)
{
	if(ouvrir_annonceur.arguments.length==2)
		javascript='OUI';
	if(javascript=='OUI')
	{
		if(incorpore=='NON') {
			titre='_blank';
			parametre='toolbar=1,location=1,personnalbar=1,status=1,menubar=1,scrollbars=1,resizable=1,height=420,width=800,left=0,top=0,channelmode=0,directories=0';
		} else {
			titre='place';
			parametre='';
		}
		f=window.open(adresse, titre, parametre);
		
		if(f.opener)
			return false;
	}
	
	return true;
}

function decr_temps(id, temps) {
	if (temps) {
		temps--;
		var h = Math.floor(temps/3600);
		var m = Math.floor((temps-h*3600)/60);
		var s = Math.floor(temps-h*3600-m*60);
		var temps_restant = h + "h " + m + "mn " + s + "s";
		document.getElementById(id).innerHTML=temps_restant;
		window.setTimeout("decr_temps('"+id+"', "+temps+");", 1000);
	} else return ;
}

function newsletter()
{
	if(!eval(fenetre=window.open('newsletter.php','newsletter','width=795,height=395,top=0,left=0')))
		document.getElementById('popup_newsletter').submit();
	window.focus();
}

