//Here starts the logo protect code, aka logo_protect.js
function LogoAlertBox() {
	
}
function protector(e) {
	if (navigator.appName == 'Netscape' && 
	(e.which == 3 || e.which == 2)) {
		LogoAlertBox();
		return false;
	}
	else if (navigator.appName == 'Microsoft Internet Explorer' && 
		(event.button == 2 || event.button == 3)) {
		LogoAlertBox();
		return false;
	}
	return true;
	}
//Here ends the logo protect code