
function is_msie() {
	return (navigator.appName == "Microsoft Internet Explorer");
}

function Framing(){
	if (this.document == top.document || top.location.host != this.location.host) {
		var doctitle = document.title;
		document.clear();
		document.open("text/html");
		document.writeln('<html><head><title>' +doctitle+ '</title></head>');
		document.writeln('<frameset cols="3,788,*" framepadding="0" frameborder="NO" border="0" framespacing="0">'+
		'<frame name="spacer" scrolling="NO" src="http://vorort.bund.net/hoexter/spacer.html" marginwidth="0" marginheight="0" noresize>'+
		'<frameset rows="88,*" framepadding="0" frameborder="NO" border="0" framespacing="0">'+
		'<frame name="navi" scrolling="NO" src="http://vorort.bund.net/hoexter/navi.php" marginwidth="0" marginheight="0" noresize>'+
		'<frame name="content" scrolling="AUTO" src="'+top.location.href+'" marginwidth="0" marginheight="0" noresize>'+
		'</frameset>'+
		'<frame name="spacer" scrolling="NO" src="http://vorort.bund.net/hoexter/spacer.html" marginwidth="0" marginheight="0" noresize>'+
		'</frameset>"');
		document.close();
		return true;
	} 
	return false;
}

function msieFraming() {
	if (is_msie()) {
		if (Framing()) {
			window.setTimeout('parent.frames["content"].location.href = '+'"'+parent.location.href+'";',10);
		}
	}
}

function netscapeFraming() {
	if (!is_msie()) Framing();
}

window.onerror=myErrorHandler;

function myErrorHandler() {
	return true
}

msieFraming();