JS: no-right-click menu
HTML
<html>
<head>
<title>Disable Context Menu</title>
</head>
<div id=shadow width="600" height="400"></div>
<body oncontextmenu="return false">
<iframe id="frameId" width="600" height="400" src="local_file.html"></iframe>
</body>
</html>
CSS
#shadow{
position:absolute;
width:640px;
height:400px;
z-index:100000;
}
JavaScript
//you have to set shadow div width,height,position.