<!--

/*
This routine prevents the use of the mouse right-click.
*/

// Message for the alert box
var errmessage="Mouse right click functionality is disabled.";

function click(e)
{
    if (document.all)
       {
           if (event.button == 2)
               {
                   alert(errmessage);
                   return false;
               }
       }
}

document.onmousedown=click;

// -->