﻿document.onmousedown=click;
if(document.layers) window.captureEvents(Event.MOUSEDOWN);
window.onmousedown=click;
function click(e){
	if(navigator.appName == 'Netscape'){
		if(e.which != 1){
			alert('Please respect the intelligence property!');
			return false;
		}
	}
	if(navigator.appName == 'Microsoft Internet Explorer'){
		if(event.button != 1){
			alert('Please respect the intelligence property!');
			return false;
		}
	}
}
function stats(){
	window.status = '                                                        ';
	setTimeout('stats()', 0);
}
window.status = '                                                           ';
stats();