// (c) www.shamrock.de

// Frames entfernen
b=parseInt(navigator.appVersion);
if (top.frames.length>0)
{ if (b<4) top.location.href=self.location;
  else top.location.replace(self.location)
}
// op,ie,ns=Browsertyp-Flags
op=(navigator.userAgent.indexOf('Opera')>-1);
if (op) { ie=false; ns=false; }
else { ns=(navigator.appName=='Netscape'); ie=navigator.appVersion.indexOf("MSIE")>-1 }
// Hintergrundraster bei 16 Farben vermeiden
if (b>3) if (screen.colorDepth<5) document.bgColor="white";

// Opera-Ersatz für #top
function gotop()
{ if (op) scrollTo(0,0)
}

// Download-Rechtsklick abfangen
function rightclick(evt)
{ k=false;
  if (document.all) { if (event.button==2) k=true; } // IE
  else if (evt.which==3) k=true; // NS+MZ
  if (k) alert('Bitte benutzen Sie die linke bzw.\nprimäre Maustaste zum Download.')
}

// Screenshot-Klick
function abb()
{ if (location.href.indexOf("/en/")<0)
   alert ('Dies ist nur eine Abbildung. Sie müssen\ndas Programm erst herunterladen und\ninstallieren, um es benutzen zu können.')
  else alert ('This is an image only. You have to download\nand install the program in order to use it.') 
}

// Fenster öffnen: f=File, n=Fenstername, t=Link-Text, x/y=nutzbare Größe
function openwin(f,n,t,x,y)
{ document.write(" [<A HREF=\"javascript:void open('"+f+"','"+n+"','width="+(x+35)+",height="+(y+45)+",resizable=no,scrollbars=no').focus()\">"+t+"</A>]")
}
