<!--

function fnInsertBack()
{
	var oA = document.createElement('a');
	oA.setAttribute('href', '#');
	var oTxtA = document.createTextNode('Retour');
	oA.appendChild(oTxtA);

	oA.onclick = function() { window.history.back(); return false; }

	var oBack = document.getElementById('back');
	if( !oBack ) return;
	oBack.appendChild(oA);
}
fnInsertBack();

//-->