if(navigator.appName == "Netscape"){ 
	window.location = "e_type_bnc.htm";
}else if(navigator.appName == "Microsoft Internet Explorer")
{ }
else
{ 
	window.location = "e_type_bnc.htm";
}

function rclickIE(e)
{
	if(document.all || document.getElementById)
	{
		if(event.button==1 || event.button==2 || event.button==3)
		{
			return false;
		}
	}
}

function mOver()
{
	if(event.button == 0)
	{
		lTime = 10*60;
		autoShow = 0;
		if(document.getElementById('msg_autosignout'))
		{
			document.getElementById('msg_autosignout').innerHTML = "";
		}
		if(document.getElementById('divide'))
		{
			document.getElementById('divide').innerHTML = "";
		}
	}
	window.defaultStatus = '';
	return true;
}
 
function mOut()
{
	window.defaultStatus = '';
	return true;
}

function rclickNS(e) 
{
	if(document.layers||(document.getElementById&&!document.all))
	{
		if (e.which==2 || e.which==3 || e.which==1) 
		{
			return false;
		}
	}
}

if (document.layers)
{
	//document.captureEvents(Event.MOUSEDOWN);
	//document.onmousedown = rclickNS;
}
else if(document.getElementById&&!document.all)
{
	document.onmousedown = rclickNS;
	document.onmouseover = mOver;
	document.onmouseout = mOut;
}
else if(document.getElementById&&document.all)
{
	document.onmousedown = rclickIE;
	document.onmouseover = mOver;
	document.onmouseout = mOut;
}
 
document.oncontextmenu=new Function("return false")
	

/*function clickNS(e)
{
	alert(event.button);
	if(e.which == 3 || e.which == 2)
	{
		return false;
	}
}

function clickIE(e)
{
	alert("IE");
}

if(document.layers || document.getElementById || document.all)
{
	//LEVEL 1 DOM
	document.captureEvents(Event.MOUSEDOWN);
	document.onmousedown=clickNS;
	//document.onmouseover=clickNS4;
	//document.onmouseout=clickNS4;
}
else if(document.all || document.getElementById)
{
	//MICROSOFT DOM
	alert("IE");
	document.oncontextmenu=clickIE;
}
else if(document.layers)
{
	//NETSCAPE DOM
}

//document.onmousedown=click;
document.oncontextmenu=new Function("return false")

*/
/*
if (document.layers) {
if (e.which == 3) {
alert("message");
return false;
}
}
}
*/
/*if (document.layers) {
document.captureEvents(Event.MOUSEDOWN);
}
document.onmousedown=click;
*/



//var message="Function Disabled!";

/*function clickIE4()
{
	if (event.button==2 || event.button==3)
	{
		//alert(message);
		alert("ok");
		return false;
	}else
	return true;
}

function clickNS4(e)
{
	if (document.layers||document.getElementById&&!document.all)
	{
		if (e.which==2||e.which==3)
		{
			window.status = "";
			return false;
		}else
		return true;
	}
}*/

/*
//document.oncontextmenu=new Function("return false")
//document.oncontextmenu = nocontextmenu;
//document.onmouseover = nostatusbar;
function nocontextmenu()
{
	alert("ok");
	window.status = "";
	//document.oncontextmenu = new Function("return false;")
	return false;
}

function nostatusbar()
{
	window.status = "";
	return true;
}*/