I'm not really sure how to do that m8! but I know how to stop people right click on your page!
if you wanna people stop people right click and steal your stuff just copy and paste this code!
Code:
<script type="text/javascript">
function ehan( evnt )
{
if( evnt.which == 3 )
{
alert( "No Right Click" );
return false;
}
return true;
}
function ocmh()
{
alert( "No Right Click" );
return false;
}
document.oncontextmenu = ocmh;
document.captureEvents( Event.MOUSEDOWN );
if( document.layers ) document.onmousedown = ehan;
</script>
I'll Try To Find It For Ya!