﻿// Fichier JScript

function trapEnter(toCall){
     var e=event;
     if ((e.keyCode && e.keyCode == 13) || (e.which && e.which == 13)) {
          e.cancelBubble = true;
          if (e.returnValue) e.returnValue = false;
          if (e.stopPropagation) e.stopPropagation();
          if (toCall) eval(toCall);
          return false;
     }
     else return true;
}