<!--
		var copyright = ' © 2005 - 2009 by optimex ';
		function buttoncheck(e)
		{
			if (document.all && event.button==2)
			{
				alert(copyright)
				return false
			}
			if (document.layers && e.which==3)
			{
				alert(copyright)
				return false
			}
		}
		if (document.layers)
		{
			document.captureEvents(Event.MOUSEDOWN);
		}
		document.onmousedown=buttoncheck;
//-->
