<!--
var url_ajax="http://www.sophienet.net/";
//var url_ajax="http://localhost/sophienet/www/";

function affichage(div,texte) { document.getElementById(div).innerHTML=texte; }

function file(fichier) {
  if(window.XMLHttpRequest) { xhr_object=new XMLHttpRequest(); } // FIREFOX
  else if(window.ActiveXObject) { xhr_object=new ActiveXObject("Microsoft.XMLHTTP"); } // IE
  else { return(false); }
  xhr_object.open("GET", fichier, false);
  xhr_object.send(null);
  if(xhr_object.readyState==4) { return(xhr_object.responseText); }
  else { return(false); }
}

function aff_div(a) {
  if(document.getElementById(a).style.display=="none") { document.getElementById(a).style.display="block"; }
  else { document.getElementById(a).style.display="none"; }
}

function form(id) {
  affichage('cache', file(url_ajax+'ajax.php?mode=form&id='+id));
  aff_div('cache');
}

function change_artiste(lartiste) {
  if(document.getElementById('artistes')) {
    affichage('artistes', file('ajax_artistes.php?id='+lartiste))
    document.location.href='#haut_bloc';
  }
}
-->
