
function mentions()
{


  var xhr=null;
    
    if (window.XMLHttpRequest) { 
        xhr = new XMLHttpRequest();
    }
    else if (window.ActiveXObject) 
    {
    xhr = new ActiveXObject("Microsoft.XMLHTTP");
    }

    xhr.onreadystatechange = function() { alert_affichmentions(xhr); };


    xhr.open("GET", chemin+"/php/mentions.php", true);
    xhr.send(null);




}
	
	
	
function alert_affichmentions(xhr)
{
	
    if (xhr.readyState==4) 
    {

document.getElementById("popupDhtmlContennu2").innerHTML = xhr.responseText;


document.getElementById('popupDhtml2').style['height'] = document.getElementById('main').offsetHeight+100+'px';
document.getElementById('popupDhtmlFond2').style['height'] = document.getElementById('main').offsetHeight+'px';

document.getElementById('popupDhtml2').style['display'] = 'block';

	}
}