	var message="Sorry, that function is disabled."
if (window!= top)
top.location.href=location.href;
function click(e) {
	if (document.layers) {
		if (e.which == 3) {
		alert(message);
		return false;
		}
	}
	else if (document.all) {
		if (event.button == 2) {
		alert(message);
		return false;
		}
	}
	else if (document.getElementById) {
		if (e.which == 3) {
		alert(message);
		return false;
		}
	}
}
if (document.layers|document.getElementById) {
document.captureEvents(Event.MOUSEDOWN);
}
document.onmousedown=click;

