function MouseClick(e)
{
	var msg="© Copyright 2005 BSH Home Appliances Ltd and/or its licensors. No use without permission.";
	if (document.all)
	{
		if (event.button == 2 || event.button==3)
		{
			alert(msg);
			return false;
		}
	}
	else if (document.layers)
	{ 
		if (e.which == 3) 
		{
			alert(msg);
			return false;
		}
	}
	else if (document.getElementById)
	{
		if (e.which==3)
		{
			alert(msg)
			return false;
		}
	}
}
//document.onmousedown=MouseClick;