<!-- Dieses Script in Browsern verbergen, die nicht auf JavaScript eingestellt sind

function is_msie() {
return (navigator.appName == "Microsoft Internet Explorer");
}

function Framing()
{ 
if (this.document == top.document || 
top.location.host != this.location.host) {
var pathprefix = location.protocol + '//' 
+ location.host
+ location.pathname.substring(0, 
location.pathname.lastIndexOf('/')+1);

var doctitle = document.title;
document.clear();
document.open("text/html");
document.writeln('<html>\n<head><title>'+doctitle+'-</title></head>');
document.writeln('<frameset framespacing="0" border="0" cols="145,*" frameborder="0">');
document.writeln('<frameset rows="105,*,101">');
document.writeln('<frame name="links_oben" scrolling="no" noresize marginwidth="0" marginheight="0" src="navigation/links_oben.htm">');
document.writeln('<frame name="Links" src="navigation/links_haupt.html" scrolling="auto" marginwidth="0" marginheight="0">');
document.writeln('<frame name="Links1" src="navigation/unten.htm" scrolling="no" marginwidth="0" marginheight="5">');
document.writeln('</frameset>');
document.writeln('<frameset rows="100,*">');
document.writeln('<frame name="ROben" marginwidth="10" marginheight="0" scrolling="no" noresize src="navigation/oben.htm">');
document.writeln('<frame name="RUnten" src="'+top.location.href+'" marginwidth="15" marginheight="0" scrolling="auto">');
document.writeln('</frameset></frameset><body>1</body></html>');
document.close();

return true;
} 
return false;
}

function msieFraming() {
if (is_msie()) {
if (Framing()) {
window.setTimeout('top.frames["RUnten"].location.href = '+
'"'+top.location.href+'";',10);
}
}
}

function netscFraming() {
if (!is_msie()) Framing();
}

msieFraming();
// Bis hier verbergen --->


