// JavaScript Document - galabands.info
if(top!=self)
  top.location=self.location;
//rechte Maustaste sperren bei Netscape und beim MSIE ab Version 4.0.
if (document.layers){
    window.captureEvents(Event.MOUSEDOWN | Event.MOUSEUP)
    window.onmousedown=rightclick;
    window.onmouseup=rightclick;

    function rightclick(e) {
    if (e.which == 3) {
    alert('Diese Funktion ist deaktiviert.');
    return false;
    }
    else {
        return true;
        }
    }
}
if (document.all){
    function click() {
    if (event.button==2) {
    alert('Diese Funktion ist deaktiviert.')
    }

    if (event.button==3) {
    alert('Diese Funktion ist deaktiviert.')}
    }
    document.onmousedown=click
}//Script rechte Maustatste Ende


function MM_reloadPage(init) {  //reloads the window if Nav4 resized
  if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
    document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
  else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
}
MM_reloadPage(true);
