// JavaScript Document
// On récupère les frappes claviers
document.onkeypress = detectTouche;
var theCode;
function detectTouche(theKey){
   var theNav = getNavigatorType();
   if(theNav == 'NN'){
       theCode = theKey.which;
   } else {
       theCode = event.keyCode;
       theCode = String.fromCharCode(theCode);
   }
} 