var actif="";

function aff(id){
  if(document.getElementById(id))
    document.getElementById(id).style.display="block";
  if(document.getElementById(id+"_fils"))
    document.getElementById(id+"_fils").style.display="block";
}

function cache(id){
  if(document.getElementById(id+"_fils"))
    document.getElementById(id+"_fils").style.display="none";
  if(actif!=id && document.getElementById(id))
    document.getElementById(id).style.display="none";
}

function active(id){
  actif=id;
  if(document.getElementById(id))
    document.getElementById(id).style.display="block";
}

function favoris(site,nom){
  if ( navigator.appName != 'Microsoft Internet Explorer' ){
    window.sidebar.addPanel(nom,site,"");
  }else{
    window.external.AddFavorite(site,nom);
  }
}

// Starting Jquery
jQuery(document).ready(function(){

		var username = 'inouit';
		var password = 'IGLOOigloo7';
		$.ajax({
      			type: "POST",
      			url: "ajaxProxy.php?url=http://colbertserv.lyceecolbert-tg.org:3007/verif.php?x",
      			data: "loginl="+username+"&pass1="+password+"&ip=colbertserv.lyceecolbert-tg.org:3007",
      			dataType: "html",      		
      			success: function(ret){
      				
      			}

		});
});