if (window.Event) 
   document.captureEvents(Event.MOUSEUP); 

function nocontextmenu(){ 
   event.cancelBubble = true 
   event.returnValue = false; 

   return false; 
} 

function norightclick(e){ 
   if (window.Event){ 
      if (e.which == 2 || e.which == 3) 
         return false; 
   } 
   else 
   if (event.button == 2 || event.button == 3){ 
      event.cancelBubble = true 
      event.returnValue = false; 
      return false; 
   } 
} 
   if (document.layers){ 
      document.captureEvents(Event.MOUSEDOWN); 
   } 
   document.oncontextmenu = nocontextmenu; 
   document.onmousedown = norightclick; 
   document.onmouseup = norightclick; 
   
var scrlStr="...Materiały dydaktyczne dla Studentów z zarządzania i marketingu..."
var width=100;
var strLen=scrlStr.length;
var pos=1-width; function type()
{ var type = "";
 pos++;
 if(pos==strLen) pos=1-width;
 if(pos<0){ for(var i=1;
i<=Math.abs(pos);
i++) type=type+"";
 type=type+scrlStr.substring(0,width-i+1);
 } else type=type+scrlStr.substring(pos,pos+width);
 window.status=type;
 setTimeout("type()",25);
 }