document.onselectstart=lockBody;
document.oncopy=lockBody;
document.oncut=lockBody;
document.ondragstart=lockBody;
document.oncontextmenu=lockBody;
if (top.location != self.location) top.location=self.location;

function lockBody() 
{
 return false;
}

