  window.onload=function() {
    var c1=document.getElementById('c1');
    var note=document.getElementById('note');
    var hrefs=document.getElementsByTagName('A');
    for ( var i=0; i<hrefs.length; i++ ) {
      tmp=hrefs[i];
      tmp.onclick=function() {
        c1.style.backgroundColor='#dadada';
        c1.style.visibility='hidden';
        this.style.cursor='wait';
        }
      tmp.onmouseover=function() {
        c1.style.backgroundColor='white';
        note.style.visibility='visible';
        }
      tmp.onmouseout=function() {
        c1.style.backgroundColor='#dadada';
        note.style.visibility='hidden';
        }
      }
    }

  window.onunload=function() {
    }

