<!--
var message="Sorry, You are not authorized to view source"; 
var NS = (navigator.appName == "Netscape") ? true:false;

function docClick(e) 
{
	if(NS)
	{
		if(e.which == 3) 
		{
			alert(message);
			return false;
		}	
	}
	else
	{
		if (event.button == 2) 
		{
			alert(message);
			return false;
		}
	}
}
function keyCatch(w)
{
	if(NS)
	{
		if(w.which==0)
		{
			alert(message);
			return false;
		}
	}
	else
	{
		if(window.event.keyCode==93)
		{
			alert(message);
			return false;
		}
	}
}

if(NS)
{
	document.captureEvents(Event.MOUSEDOWN);
}

document.onmousedown=docClick; 
document.onkeydown=keyCatch;
// --> 
