var msg = "Copyright \u00A9 1998-2010 Mauro Luis Devin Campagnoli.\n\nAll rights reserved. Reproduction of texts, images, music and sounds is forbidden. For further information, read the copyright notice: Main menu > About > Copyright Notice.";
if (navigator.appName=="Microsoft Internet Explorer"){
	function NOclickIE(e) {
		if (event.button == 2 || event.button == 3) { alert(msg); return false }
		return true;
	}
	document.onmousedown=NOclickIE; document.onmouseup=NOclickIE; window.onmousedown=NOclickIE; window.onmouseup=NOclickIE
}
else {
	function NOclickNN(e){
		if (document.layers||document.getElementById&&!document.all){
			if (e.which==2||e.which==3){ alert(msg); return false }
		}
	}
	if (document.layers){
		document.captureEvents(Event.MOUSEDOWN); document.onmousedown=NOclickNN
	}
	document.oncontextmenu=new Function("alert(msg);return false")
}
function bmSite(){
	var title = document.title + " (Pygmies.Org)"
	var url = document.URL
	if (window.sidebar && window.sidebar.addPanel) {
		window.sidebar.addPanel(title,url,"")
	} else if(document.all) {
		window.external.AddFavorite(url,title)
	} else if (window.opera && window.print) {
	} else if (navigator.appName=="Netscape") {
		alert("Please click OK, then press <Ctrl-D> to bookmark this page.")
	}
}