﻿if(typeof(document.getElementById)=='undefined'){
  if(typeof(document.all)!='undefined'){
    if(document.all!=null){
      document.getElementById=function(id){return document.all[id];};
    }
  }
}else{
  if(document.getElementById==null){
    if(typeof(document.all)!='undefined'){
      if(document.all!=null){
        document.getElementById=function(id){return document.all[id];};
      }
    }
  }else{
    if(typeof(document.all)=='undefined'){
      document.all=function(id){return document.getElementById(id);};
    }else{
      if(document.all==null){
        document.all=function(id){return document.getElementById(id);};
      }
    }
  }
}
