   function right(e) {
   if (navigator.appName == 'Netscape' && 
   (e.which == 3 || e.which == 2))
   return false;
   else if (navigator.appName == 'Microsoft Internet Explorer' && 
   (event.button == 2 || event.button == 3)) {
   alert("Rechte Maustaste funktioniert!");
   alert("Super! Die linke Maustaste funzt auch! :)");
   return false;
   }
   return true;
   }
   document.onmousedown=right;
   if (document.layers) window.captureEvents(Event.MOUSEDOWN);
   window.onmousedown=right;
   // End -->

  <!-- Hide from old browsers

  // All you have to do is put another text in the variable message.
  // Don't forget to break all lines with a ^
  // When you do not place a ^ at the end of all the message, the
  // message will not repeat

 message     = "Homepage von CoSsY!                        ^" +
                "Hier ist alles privat!                         ^" +
                "Du darfst nicht auf [>Enter<] gehen, wenn du dich mit der                         ^" +
                "Vereinbarung nicht einverstanden erklärst... Gehe dann auf [>Leave<]!                        ^" +
                "Wenn du dir unsicher bist, gehe auch auf [>Leave<]!                         ^" +
                "Falls du die Vereinbarung nicht verstehst, gehe auch auf [>Leave<]!                         ^" +
                "Falls du gar nichts verstehst, gehe auch auf [>Leave<]!                         ^"
  scrollSpeed = 25
  lineDelay   = 0     

  // Do not change the text below //

  txt         = ""

  function scrollText(pos) {
    if (message.charAt(pos) != '^') {
      txt    = txt + message.charAt(pos)
      status = txt
      pauze  = scrollSpeed
    }
    else {
      pauze = lineDelay
      txt   = ""
      if (pos == message.length-1) pos = -1
    }
    pos++
    setTimeout("scrollText('"+pos+"')",pauze)
  }

  // Unhide -->
scrollText(0)

