	function protector(mouseevent) {
		if (navigator.appName == 'Netscape' && (mouseevent.which == 2 || mouseevent.which == 3))
			return false;
		else if (navigator.appName == 'Microsoft Internet Explorer' && (event.button == 2 || event.button == 3)) {
			alert("The content of this website is protected by Intellectual Property Laws. Text and image files and other original content on this website belong to and remain the property of Asia Web Direct Co., Ltd. For more information, read the copyright notice at the bottom of any page.");
			return false;
		} else return true;
	}
	document.onmousedown=protector;
	if (document.layers) window.captureEvents(Event.MOUSEDOWN);
	window.onmousedown=protector;
