
function file(fichier)
{
if(window.XMLHttpRequest) // FIREFOX
xhr_object = new XMLHttpRequest();
else if(window.ActiveXObject) // IE
xhr_object = new ActiveXObject("Microsoft.XMLHTTP");
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 writediv(iddiv,texte)
{
	 document.getElementById(iddiv).innerHTML = texte;
}

function ajax(index,iddiv,lan,fct,v1,v2,v3)
{             
    url = 	'../ajax.php?fct='+fct+'&lan='+lan+'&iddiv='+iddiv+'&index='+index+'&v1='+v1+'&v2='+v2+'&v3='+v3+'&sdfag2a';
	if(texte = file(url))
	    writediv(iddiv,texte);
	 //document.getElementById('urlsql2').innerHTML = url;      
}
    
function start(){
	start_ajax();
}                     
function start_ajax(){
		//alert(" ** ");
}                     


	

window.onload = start;