You will need open Code View in Frontpage.
Most likely the script is in the head section between tags <head> and </head>
The right click block will begin with <script> and end with </script>
Here is an example of a Right Click Script. Use this as an example and see
if your page contains similarities. Also you can just change the text if you
don't like the popup message.
Cut <script> to </script> and then save. Reload page and see you deleted the
proper script. If not paste the information back and cut another script.
Sometimes while working in Code View Frontpage won't let you Undo last if you
saved the page. That is why you highlight and cut.
<SCRIPT LANGUAGE="JavaScript1.1">
function right(e) {
if (navigator.appName == 'Netscape' &&
(e.which == 3 || e.which == 2))
return false;
else if (navigator.appName == 'Microsoft Internet Explorer' &&
(event.button == 2 || event.button == 3)) {
alert("Sorry, you do not have permission to right click on this page.");
return false;
}
return true;
}
document.onmousedown=right;
document.onmouseup=right;
if (document.layers) window.captureEvents(Event.MOUSEDOWN);
if (document.layers) window.captureEvents(Event.MOUSEUP);
window.onmousedown=right;
window.onmouseup=right;
</script>
Charles
http://www.yellowecho.com