function is_msie() {
return (navigator.appName == "Microsoft Internet Explorer", "Netscape");
}

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 rows="262,392*" frameborder="NO" border="0" framespacing="0" cols="*">'+ 
  '<frame name="topframe" scrolling="NO" noresize src="Top.html" >'+
  '<frameset cols="203,809*" frameborder="NO" border="0" framespacing="0" rows="*">'+ 
  '<frame name="leftframe" scrolling="NO" src="menue.html" noresize>'+
  '<frame name="mainframe" src="Home1.html">'+
  '</frameset></html>');

document.close();



return true;
} 
return false;
}

function msieFraming() {
if (is_msie()) {
if (Framing()) {
window.setTimeout('top.frames["rechts"].location.href = '+
'"'+top.location.href+'";',10);
}
}
}

function netscFraming() {
if (!is_msie()) Framing();
}

msieFraming();

function msieFraming() {
if (is_msie()) {
if (Framing()) {
window.setTimeout('top.frames["rechts"].location.href = '+
'"'+top.location.href+'";',10);
}
}
}

function netscFraming() {
if (!is_msie()) Framing();
}

msieFraming();




