function alpha(item) { 
		var input = document.forms['clavier'].elements['saisie'] ;
		input.focus() ;
		if (typeof input.selectionStart != 'undefined') {
			cursor = input.selectionStart ;
			size = input.value.length ;
			firstPart = input.value.substring(0, cursor) ;
			lastPart = input.value.substring(cursor, size) ;
			input.value = firstPart + item + lastPart ; 
			input.selectionStart += item.length ; 
		}
		else { // pour IE  
			var range = document.selection.createRange() ;
			range.text = item ;
		}
		input.focus() ;
		input.scrollTop = input.scrollHeight ;
	}
function copy()
{ textRange=document.clavier.saisie.createTextRange();   textRange.execCommand("Copy");   textRange="";
}

function MM_jumpMenu(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}