	function handleEvent()
	{
		if(event.button==2)
		{
			alert( 'Copyright © 2006 www.charlietang168.com . All Rights Reserved.' ) ;
		}
	}

	// RUN at beginning of program
	document.onmousedown = handleEvent ;
	
