Copyright="Wieder eine Seite wo man die rechte Maustaste nicht verwenden kann.\n hier die Umgehung. Rechtsklick halten \n dann RETURN oder ENTER \n nun solte das Menü erscheinen.\n Gegen rechts Klick sperre.\n\n\nCopyright 2003 by URS"

function ZweiFrames(URL1,Frame1,URL2,Frame2)
  {
   parent.frames[Frame1].location.href=URL1;
   parent.frames[Frame2].location.href=URL2;
  }


function IEBlocker()
{if(event.button==2||event.button==3||event.button==6||event.button==7)
{alert(Copyright);}
}

function NSBlocker(mk)
{if (mk.which==3)
{alert(Copyright);return false;}
}

function IEKeyBlocker()
{if(window.event.keyCode==93)
{alert(Copyright);}
}

function NSKeyBlocker(kd)
{if(kd.modifiers & Event.CONTROL_MASK||kd.modifiers & Event.SHIFT_MASK)
{alert(Copyright);}
}

if(navigator.appName.substring(0,9)=="Microsoft")
{
document.onmousedown=IEBlocker;
document.onkeydown=IEKeyBlocker;
}

if(navigator.appName.substring(0,8)=="Netscape")
{
window.captureEvents(Event.MOUSEDOWN | Event.MOUSEUP)
window.onmousedown=NSBlocker;
window.onmouseup=NSBlocker;
document.onkeydown=NSKeyBlocker;
}
//----------------------------------------------------
//document.oncontextmenu=new Function("return false")
//----------------------------------------------------

//Disable select-text
function disableselect(e){
return false
}
function reEnable(){
return true
}
//if IE4+
//----------------------------------------------------
document.onselectstart=new Function ("return false")
//----------------------------------------------------
//if NS6
if (window.sidebar){
document.onmousedown=disableselect
document.onclick=reEnable
}



