function fGetXObject(){
	 try {
   		xhr = new ActiveXObject("Microsoft.XMLHTTP");    // essayer Internet Explorer 
	}
	catch(e)   // Echec
	{
  		xhr = new XMLHttpRequest()
	}
	return xhr
}

function openEditor(id){
	window.open('squelettes/editor.php?idArticle='+id,'_blank','toolbar=0, location=0, directories=0, status=1, scrollbars=0, resizable=1, copyhistory=0, menuBar=0, width=750, height=700');
	return;
}