function _getElementById(id) {
   if (document.all) {
      return document.all[id];
   } else if (document.getElementById) {
      return document.getElementById(id);
   }
   return null;
}
