var xhr = null; 
function getXhr(){
	if(window.XMLHttpRequest) 
	xhr = new XMLHttpRequest(); 
	else if(window.ActiveXObject){ // Internet Explorer 
	try {
	xhr = new ActiveXObject("Msxml2.XMLHTTP");
	} catch (e) {
	xhr = new ActiveXObject("Microsoft.XMLHTTP");
	}
	}
	else { 
	xhr = false; 
	} 
}
function nouveau2(langue){
	setTimeout("nouveau('" + langue + "')",6000);
}
function nouveau(langue){
	getXhr()
		xhr.onreadystatechange = function(){
		if(xhr.readyState == 4 && xhr.status == 200){
			document.getElementById("nouveaute").innerHTML=xhr.responseText;
		}
		}
	xhr.open("POST","z_promos.php",true);
	xhr.setRequestHeader("Content-type", "application/x-www-form-urlencoded; charset=iso-8859-1") 
	xhr.send("langue=" + langue);
	setTimeout("nouveau('" + langue + "')",6000);
  document.getElementById("nouveaute").filters.blendTrans.Apply();
  document.getElementById("nouveaute").style.visibility = "visible";
  document.getElementById("nouveaute").filters.blendTrans.Play();
}
