// JavaScripte für gko-website, berlin - 13.10.07

// verhindert frame-klau:
if(top!=self) 
    top.location=self.location;

// verhindert rechtsklick auf der site:
function frk(e) { return e && e.which && (e.which == 1) }
function ff(e) { return false }
document.onmousedown=frk;
window.onmousedown=frk;
document.ondragstart=ff;
document.oncontextmenu=ff;
document.writeln('<meta http-equiv="ImageToolbar" content="no">');
