function undisable(X) {
  for (i=0; i<X.elements.length; i++) {
    X.elements[i].disabled = false;
    }
  }  
  
