ns4 = document.layers;
ie4 = document.all;
nn6 = document.getElementById && !document.all;

function SetClassColor() {
   if (window.location.href.indexOf('#') == -1) {
      ; 
   } else {
      var str = window.location.href.substring(window.location.href.indexOf('#')+1,window.location.href.length);

      if (ie4) {
         document.all[str].style.backgroundColor = "#ffffb0";
      }   else if (nn6) {
         document.getElementById(str).style.bgcolor = "#ffffb0";
      }
//      window.scrollBy(0,-20);
   }
}
