
/* print icon full javascript */
var numFiche;
if (!numFiche) numFiche='';

window.onload = function() {
	if(document.getElementById && document.getElementById('fleche_nav')) {
		printImg = document.createElement('img');
		printImg.alt = 'Imprimer les tests UWEM 1.0 pour la recommandation ' + numFiche;
		printImg.title = 'Imprimer les tests UWEM 1.0 pour la recommandation ' + numFiche;
		printImg.src = 'images/imprimante.gif';
		printImg.style.borderWidth = '0';
				
		printLink = document.createElement('a');
		printLink.href = 'javascript:window.print()';
		printLink.appendChild(printImg);
			
		listUtil=document.getElementById('fleche_nav');
		firstLink = listUtil.firstChild;
		listUtil.insertBefore(printLink,firstLink);
	} 
}