////////////////////////////////////////////////////////////////////////////////////////

function noPopupMenu(go) {
	if (document.all) {
		if (event.button == 2) {
			return false;
		}
	} else
	if (document.layers) {
		if (go.which == 3) {
			return false;
		}
	}
}

/// <!-- RIGHT CLICK DISABLE -->

if (document.layers)
	document.captureEvents(Event.MOUSEDOWN);
document.onmousedown = noPopupMenu;

////////////////////////////////////////////////////////////////////////////////////////