// NoCopy ** (c)TR 2002,11
debug = 0;

if (debug) alert(document.all);
function NoCopy(Taste)
{
	if ( (document.layers && (Taste.which==3))
	|| (document.all && (event.button>1)) )
	{
		alert("Copyrights by Webmaster.");
		return false;
	}
}
if (!document.all) document.captureEvents(Event.MOUSEDOWN);
document.onmousedown = NoCopy;
if (debug) alert("Hallo");

