/*#############################################################*/
/*# 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 AlternateTDColor (HTMLObjectID) {
  document.getElementById(HTMLObjectID).style.fontWeight      = (document.getElementById(HTMLObjectID).style.fontWeight      != 'bold'  ? 'bold'  : 'bold');
  document.getElementById(HTMLObjectID).style.color           = (document.getElementById(HTMLObjectID).style.color           != 'white' ? 'white' : 'yellow');
  document.getElementById(HTMLObjectID).style.backgroundColor = (document.getElementById(HTMLObjectID).style.backgroundColor != 'red'    ? 'red'   : 'rgb(51,51,153)');
}
function AlternateTDColorEnd (HTMLObjectID) {
  document.getElementById(HTMLObjectID).style.fontWeight      = 'normal';
  document.getElementById(HTMLObjectID).style.color           = 'black';
  document.getElementById(HTMLObjectID).style.backgroundColor = '';
}
