<SCRIPT LANGUAGE='JAVASCRIPT'>
	<!--
		// Basic way to avoid the simplest way of data copying
		var message='Copyright © 2005-2008 Ambiance Travel BV';
		function click(e) 
		{
			if (location.hostname == 'admin.ambiancetravel.nl')
				return true;

			if (document.all) 
			{
				if (event.button == 2) 
				{
					alert(message);
					return false;
				}
			}
			if (document.layers) 
			{	 
				if (e.which == 3) 
				{
					alert(message);
					return false;
				}
			}
		}
		if (document.layers) 
		{
			document.captureEvents(Event.MOUSEDOWN);
		}
		document.onmousedown=click;
		window.onerror = function()
		{
			return true;
		}

	// -->
</SCRIPT>
