document.writeln("\<META HTTP-EQUIV='imagetoolbar' CONTENT='no'\>");

var isNS = (navigator.appName == "Netscape") || window.opera ? 1 : 0;
if(document.captureEvents) document.captureEvents(Event.MOUSEDOWN|Event.MOUSEUP);
function mischandler() {
	return false;
}
function mousehandler(e) {
	if (!e) {
		if (window.event) {
			e = window.event;
		}
		else { return true; } // can't handle events
	}
	if (typeof(e.which) == 'number') {
		return e.which == 3 ? false : true;
	}
	if (typeof(e.button) == 'number') {
		return e.button == 2 ? false : true;
	}
	return true;
}
document.oncontextmenu = mischandler;
document.onmousedown = mousehandler;
document.onmouseup = mousehandler;
