function right(evnt) {
	if (navigator.appName.toUpperCase().match(/NETSCAPE/) != null) {
		if (evnt.which >= 2){
//			alert("Copyright ©2006 VIPPLUS.COM.UA");
			return false;
		}
	}
}

document.onmousedown=right;
if (document.layers) window.captureEvents(Event.MOUSEDOWN);
window.onmousedown=right;

document.oncontextmenu=new Function("return false")
