var isIE, isNav
//Coded by Sanjeev Naroliya : mailto : naroliya@rediffmail.com//
//Designed By Aparna Rudra//
var coll=""
var styleObj=""
var obj

if(parseInt(navigator.appVersion)>=4)
{
	if(navigator.appName=="Netscape")
	{
		isNav=true

	}
	else
	{
		isIE=true
		coll="all."
		styleObj=".style"
	}
	
}


document.onLoad=clk()
function clk()
{
if(isNav) document.captureEvents(Event.MOUSEDOWN | Event.MOUSEMOVE | Event.MOUSEUP)
	document.onmousedown=dwn
//	document.onmousemove=mve
}

function dwn(evt)
{
	if(isIE)
	{	
		if(window.event.button!=1)
			alert("No Help Menu. All rights reserved.")
	}
	if(isNav)
	{	
		butt=evt.which
		if(butt!=1)
		{
			alert("Sorry No Help Menu for this page")
			return false
		}
	}

}

function mve(evt)
{
	if (isIE) window.status=window.event.clientY
	if (isNav) window.status=evt.pageX
}

