Mess = "The SOUTH AFRICAN accommodation SITE";
		AppVer  = parseInt(navigator.appVersion)
		NAV = navigator.appName=="Netscape"
		IEx = navigator.appName=="Microsoft Internet Explorer"
		
		function NoRightClick(e) {
		if (NAV && e.which > 1){
		alert(Mess)
			return false
		} else if (IEx && (event.button >1)) {
			alert(Mess)
			return false;
		}
		}
		document.onmousedown = NoRightClick;
		if (document.layers) window.captureEvents(Event.MOUSEDOWN);
		if (NAV && AppVer<5) window.onmousedown = NoRightClick;
