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

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); 
	tmp = Math.random(); 
	xhr_object.open("GET", fichier, false); 
	xhr_object.send(null); 
	if(xhr_object.readyState == 4) return(xhr_object.responseText);
	else return(false);
}


function getComptoir(id_rub){
	//alert(id_rub);
	if(texte = file('front/ajax/getComptoir.php?id_rub='+id_rub+'&rnd='+rnd())){	
	writediv('layerComptoir',texte);
	}
}


function validateReseaux(id_rub){
	//alert(id_rub + "----" + id_ville );
	document.location.href = "cmm.php?id="+id_rub;
	}
	
function rnd() {
	ord=Math.random();
	ord=ord*10000000000000000000;
	return ord;
}
