function send_alert() {
  window.alert('I told you not to click the link!');
  window.alert('And you did it anyway!');
  window.alert('Oh Well, no more alerts after this.');
}

if (document.getElementById && document.createTextNode) {
	
  var noclick = document.getElementById("do_not_click");

  if (typeof noclick.addEventListener != "undefined") {
    noclick.addEventListener("mouseover", send_alert, false);
  }

  else if (typeof noclick.attachEvent != "undefined" ) {
    noclick.attachEvent("onmouseover", send_alert);
  }

  else {
    noclick.onmouseover = send_alert;
  }
  
}