			function clickExplorer() {
				if( document.all ) {
					alert('Zawartość strony jest chroniona polskim i międzynarodowym prawem autorskim.');
				}
				return false;
			}

			function clickOther(e) {
				if( document.layers || ( document.getElementById && !document.all ) ) {
					if ( e.which == 2 || e.which == 3 ) {
						alert('Zawartość strony jest chroniona polskim i międzynarodowym prawem autorskim.');
						return false;
					}
				}
			}
			if( document.layers ) {
				document.captureEvents( Event.MOUSEDOWN );
				document.onmousedown=clickOther;
			}
			else {
				document.onmouseup = clickOther;
				document.oncontextmenu = clickExplorer;
			}   
			
			
			
			window.addEvent('domready', function() { 
		   

			document.body.oncopy = function() { 
					alert('Zawartość strony jest chroniona polskim i międzynarodowym prawem autorskim.'); 
					return false; } 
			 
			 });  
			
			
				 if( typeof( document.onselectstart ) != 'undefined' )
					document.onselectstart = function(){ return false };
				 document.ondragstart = function(){ return false } 
