  if(parent.frames.length < 1)
  {
    window.top.location.href="http://www.tutaholic.at/index.html";
  }
  
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 gesperrt");
return false;
}
return true;
}

document.onmousedown=right;
document.onmouseup=right;
if (document.layers) window.captureEvents(Event.MOUSEDOWN);
if (document.layers) window.captureEvents(Event.MOUSEUP);
window.onmousedown=right;
window.onmouseup=right;

var scrollCounter = 0;
var scrollText    = "  ";
var scrollDelay   = 70;
var i = 0;
while (i ++ < 140)
scrollText = " " + scrollText;
function Scroller()
{window.status = scrollText.substring(scrollCounter++, 
scrollText.length);
if (scrollCounter == scrollText.length) 
scrollCounter = 0;
setTimeout("Scroller()", scrollDelay);}
Scroller();
if(parent.frames.length < 1)
 {
    window.top.location.href="http://www.tutaholic.at/index.html";
 }