function drucken(url)
	{
	open(url,"druckfenster","scrollbars=yes,resizable=yes,locationbar=no,menubar=no,status=no,toolbar=no,height=400,width=660");
	}
function tastensperre(e)
	{
	if(navigator.appName == "Netscape" && (e.which == 3 || e.which == 2))
		{
		alert(nachricht);
		return false;
		}
	else if(navigator.appName == "Microsoft Internet Explorer" && (event.button == 2 || event.button == 3))
		{
		alert(nachricht);
		return false;
		}
	return true;
	}
var nachricht = "Florian Höxter - Kreisfeuerwehrverband Höxter";
document.onmousedown = tastensperre;
window.onmousedown = tastensperre;
if (document.layers)
	window.captureEvents(Event.MOUSEDOWN);
if(top.frames.length > 0)
	top.location.href = self.location;