// JScript source code



function changecolorin(obj) {
	//alert(obj.)
	obj.color = "orange"

	//window.fnthome.color ="red"
	//window.tblhome.style.backgroundColor = "lime"
	}
	function changecolorout(obj) {
	obj.color ="blue"
	//window.tblhome.style.backgroundColor = ""
	}

function OpenFile(filename, title) {

	winexercise = window.open(filename,title)
	}
//********************
function NoRightClick(b) {
	if(((navigator.appName=="Microsoft Internet Explorer")&&(event.button>1)) ||
		((navigator.appName=="Netscape")&&(b.which>1)))

	//if(((navigator.appName=="Microsoft Internet Explorer")&&(event.button>1)) ||
	//	(navigator.appName=="Netscape")) //&&(b.which>1)))


	{
		alert("Sorry, this function is disabled");
		return false;
	};
};
//*********************
document.onmousedown = NoRightClick;

