<!---
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 rows="*,434,*" border="0" frameborder="0" framespacing="0">'+
  '<FRAME src="topframe.html" scrolling="no" marginwith="0" marginheight="0" noresize>'+
    '<frameset cols="*,780,*" border="0" frameborder="0" framespacing="0">'+
     '<FRAME src="leerframe.html" scrolling="no" marginwith="0" marginheight="0" noresize>'+
     '<frame src="'+top.location.href+'" name=Hauptframe >'+
	 '<FRAME src="seitframe.html" scrolling="no" marginwith="0" marginheight="0" noresize>'+
    '</frameset>'+
  '<FRAME src="untenframe.html" scrolling="no" marginwith="0" marginheight="0" noresize>'+
'</FRAMESET>'+
'</html>');
document.close();
return true;
} 
return false;
}
function msieFraming() {
if (is_msie()) {
if (Framing()) {
window.setTimeout('top.frames["Hauptframe"].location.href = '+
'"'+top.location.href+'";',10);
}}}
function netscFraming() {
if (!is_msie()) Framing();
}
msieFraming();
// --->
