﻿function new_window() {
    var anchors = document.getElementsByTagName('a');
    for(var i = 0; i < anchors.length; i++) {
      if (anchors[i].getAttribute('disabled'))
      {
        anchors[i].removeAttribute('disabled');        
        anchors[i].className = anchors[i].className + '-disabled'; 
      }
    }
  }
function EndRequestHandler(sender, args) {new_window();}
window.onload = new_window; 