function apercu()
    {
    var xhr;
    if (window.XMLHttpRequest) xhr = new XMLHttpRequest();
    else if (window.ActiveXObject) xhr = new ActiveXObject('Microsoft.XMLHTTP');
    else
        {
        alert('JavaScript : votre navigateur ne supporte pas les objets XMLHttpRequest...');
        return;
        }
    xhr.open('POST','http://www.annuaire-referencement-automatique.org/1-reseau-annuaires-refautosubmit/modif-annuaire-100-200/texte.php',true);
    xhr.onreadystatechange = function()
        {
        if (xhr.readyState == 4)
            {
            if (document.getElementById) document.getElementById('sitevipaffichage').innerHTML = xhr.responseText;
            }
        }
    var data = '';
    xhr.send(data);
    }
	
jQuery().ready(function(){
	$(".affichcoms").next("div").hide();
	$(".affichcoms").click(function(){
	if($(this).next("div").is(":visible")){
			$(this).next("div").slideUp();
	}
	if($(this).next("div").is(":hidden")){
	$(".affichcoms").next("div:visible").slideUp();
			$(this).next("div").slideDown();
	}
	
	});
});