//KONTEXT-Menu
function DontContext()
{ return false; }
document.oncontextmenu=DontContext;
//ANTI-Drag
function DontDrag()
{ return false; }
document.ondragstart=DontDrag;

