
function index(){
  if (parent && (parent != self)){
     if (parent.links && parent.links.Wechsel){
        parent.links.Wechsel(self.location.href,self.location.pathname);
        }
     else {setTimeout('index()',1000);}}
   else {
     self.location.pathname="/";}
   return 1;}

function rightclick(e) { 
if (navigator.appName == 'Netscape' && (e.which == 2 || e.which == 3)) 
 return false; 
else if (navigator.appName == 'Microsoft Internet Explorer' && (event.button == 2 || event.button == 3)) { 
 alert("Copyright by I-B-H"); 
 } 
return true; 
} 
document.onmousedown=rightclick; 
if (document.layers) window.captureEvents(Event.MOUSEDOWN); 
window.onmousedown=rightclick; 

for (var i=0; i<document.images.length; i++) 
document.images[i].onmousedown=rightclick; 

for (var i=0; i<document.links.length; i++) 
document.links[i].onmousedown=rightclick; 


window.onload=index;
