// JavaScript Document
function applyKey(evenement) {
	var touche = window.event ? evenement.keyCode : evenement.which;
    return touche;
}
