/*#############################################################*/
/*# Written by YourWeb (Web-Technologies & Solutions)         #*/
/*# You're welcome at our site http://www.your-web-service.de #*/
/*#############################################################*/

if(window.Event) document.captureEvents(Event.MOUSEDOWN | Event.MOUSEUP);
document.onmousedown=click;
document.onmouseup=click;

function click(e) {
  return;
  if ( window.Event &&     e.which  == 3 ||                 /* Netscape         */
      !window.Event && event.button == 2) {                 /* InternetExplorer */
    alert('Die rechte Maustaste hat hier keine Funktion.'); 
    return false;
  }
}

function AlternateTextColor (HTMLObjectID, Color1, Color2) {
  document.getElementById(HTMLObjectID).style.color = (document.getElementById(HTMLObjectID).style.color != Color1 ? Color1 : Color2);
}
