  window.onload=function() {
    var hrefs=document.getElementsByTagName('A');
    for ( var i=0; i<hrefs.length; i++ ) {
      tmp=hrefs[i];
      tmp.onclick=function() {
        this.style.textDecoration='none';
        this.style.color='#a0a0a0';
        this.style.cursor='wait';
        }
      }
    }

  window.onunload=function() {
    }

