Disabling Rightclick


Clicking your right mouse button is disabled on this whole page, not just on a graphic. So you can't access the following any more by rightclicking:

Save Target As...
Save As...
View Source
Properties, etc.


<head>
<script language="JavaScript">
function click() {
     if (event.button==2) {
     alert('Sorry, no access! Use left mouse button!');
     }
}
document.onmousedown=click
</script>
</head>