no.
you can check for right clicks on the mouse and alert
(right click->view source)
you could check for other key events, but as far as what
they are doing in the browser menu, no, you can not. you
could have something like this:
<script language="javascript">
var MODAL;
window.onload = function Load()
{
ModalWin('mypage.html', '', '55', '100', '750', '550',
true, true);
Quote:
}
function ModalWin(page, name, top, left, width, height,
scrollBars, Resizable)
{
var strParam = ',height=' + height + ',top=' + top
+ ',left=' + left + ',status=no,toolbar=no,menubar=no,';
if(Resizable)
{
strParam += 'resizable=yes,';
}
else
{
strParam += 'resizable=no,';
}
if(scrollBars)
{
strParam += 'scrollbars=yes';
}
else
{
strParam += 'scrollbars=no';
}
MODAL = window.open(page, name, 'width=' + width +
strParam);
MODAL.onblur = RaiseModal;
Quote:
}
function RaiseModal()
{
MODAL.focus();
Quote:
}
</script>
this way when they hit the page it raises a modal win that
does not have a menu that the user is able to get to, and
then in the page that you open, put an event handler for
if the right mouse button is clicked and disable the
ability to do such.