
  function $( id ) {
    try {
      if ( document.getElementById  != null ) { return document.getElementById( id ); }
      if ( document.all             != null ) { return document.all[ id ];            }
      if ( document.layers          != null ) { return document.layers[ id ];         }
      return null;
    }
    catch ( ex ) { return null; }
  }
