//window.onload = function() {

//}
// -- Traite les donnees er retourne le resultat --------------------------------------------------
function navigate(pageId){
   document.getElementById("content").innerHTML = "";
	var xhr = createXMLHttpRequest();
  	xhr.onreadystatechange = function() {
    if (xhr.readyState==4) { 
      if (xhr.status==200) {
        var resp = xhr.responseText;
        updateNav(resp);

      } else {
        alert("An error occurred.");
      }
    }
  }
  xhr.open("GET", "assets/scripts_web/navigate_process.php?pageId="+pageId, true);
  xhr.send(null);
}



// -- UPDATE LE DIV DES CLOTHING --------------------------------------------------
function updateNav(resp) {
	document.getElementById("content").innerHTML = resp;
}


// -- Generic functions --------------------------------------------------

function createXMLHttpRequest() {
	try { return new ActiveXObject("Msxml2.XMLHTTP"); } catch (e) {}
    try { return new ActiveXObject("Microsoft.XMLHTTP"); } catch (e) {}
	try { return new XMLHttpRequest(); } catch(e) {}
    alert("XMLHttpRequest not supported");
    return null;
}


//function $(id) {
//		return document.getElementById(id);
//}
