function display_warning()
	{
	alert('PICTURES and IMAGES: (c) 1999-2009 KAY');
	}

function right_mouseclick(e)
	{
	if(window.Event)
		{
		if(e.which == 3)
			{
	    	display_warning();
			return false;
			}
		}
		else
			{
			if((event.button & 0x2) == 0x2)
				{
				display_warning();
				return false;
				}
			}
		return true;
			}
			function init()
				{
				if(window.Event)
					{
					document.captureEvents(Event.CLICK | Event.MOUSEDOWN);
					}
	document.onmousedown = right_mouseclick;
	document.onclick     = right_mouseclick;
	}