<!--
var note="Code and graphics on this site are copyrighted !\nBut thanks for looking :-)\n\nSource und Grafik auf dieser Site haben Copyright !\nAber danke für das Ansehen :-)"; 
function clickStop(e)	{
	if (document.all)	{	if (event.button == 2)	{	alert(note);return false;	}	}
	if (document.layers)	{	if (e.which == 3)	{	alert(note);return false;	}	}
}
if (document.layers)	{	document.captureEvents(Event.MOUSEDOWN);	}
document.onmousedown=clickStop;
// --> 
