<!--
/*
TWO VARS, DialogPath AND NotIEPath MUST BE DECLARED IN THE SOURCE DOCUMENT
FOR THIS CODE TO EXECUTE SUCCESSFULLY.
DialogPath - PATH OF THE DIALOG WINDOW, ACCESS DENIED    
NotIEPath - PATH OF FILE DOCUMENT FOR NETSCAPE BROWSERS  ** DISABLED

INSERT THIS SCRIPT PREFERABLY AFTER THE VAR DECLARATIONS  
*/

//MOUSE BUTTON DISABLING SCRIPT
var SFeatures = "status:0; dialogWidth:330px; dialogHeight:170px; edge:sunken; help:no; resizable:no; ";
function catchMouse(e)
{
	if (document.all) 
	{
		if (event.button == 2 ) 
			{
				window.showModalDialog(DialogPath,"",SFeatures );
				return false;
			}
	}
	//NETSCAPE NAVIGATOR
	if (document.layers) 
	{	if (e.which == 3) 
		{
			alert(message);
			return false;
		}
	}
}
	//NETSCAPE NAVIGATOR
	if (document.layers) 
	{	
		document.captureEvents(Event.MOUSEDOWN);
	}  
function catchKey()
{
	if (document.all) 
	{
		if (event.keyCode == 17 || event.keyCode == 18 ) 
			{
				window.showModalDialog(DialogPath,window,SFeatures );
				return false;
			}
	}
}
document.onmousedown=catchMouse;
//DISABLE KEYBOARD DISABLING FOR NOW 
  //document.onkeydown=catchKey;

// -->

