// XMLHttpREquest
function $getRequester(){
	try{
		return new ActiveXObject('Msxml2.XMLHTTP');
	}catch(e){}
	try{
		return new ActiveXObject('Msxml2.XMLHTTP');
	}catch(e){}
	try{
		return new XMLHttpRequest();
	}catch(e){}
}

// Recherche Element par son ID dans le code HTML
function $GetElementId(TsID){
	var TsElement = document.getElementById(TsID);
	if(!TsElement){return null;}
	
	return TsElement;
}