/*
| -------------------------------------------------------
| Author	: Feng Wu, http://come.to/feng, feng@ustc.edu
| -------------------------------------------------------
| Created	: 2000
| Last Mod	: 10/18/01 3:00PM
| -------------------------------------------------------
| Copyright © Feng Wu, 2000 - 2001
| -------------------------------------------------------
*/

var message="http://come.to/feng, Feng Wu, (c) 1996 - 2003";

function click(e)
{	if (document.all)
	{	if (event.button == 2)
		{	alert(message);
			return false;
		}
	}
	if (document.layers)
	{	if (e.which == 3)
		{	alert(message);
			return false;
		}
	}
}

if (document.layers)
{	document.captureEvents(Event.MOUSEDOWN);
}

document.onmousedown = click;

window.focus();
