	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("All pictures and text in this website are copyright (c) Sallmanns (Far East) Limited. All rights reserved worldwide.  Thank you.");
			return false;
		} else return true;
	}
	document.onmousedown=protector;
	if (document.layers) window.captureEvents(Event.MOUSEDOWN);
	window.onmousedown=protector;
	
	function clp_clear() {
        var content=window.clipboardData.getData("Text");
        if (content==null) {
           window.clipboardData.clearData();}
         setTimeout("clp_clear();",1000);}