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 cols="*,800,30" frameborder="0" framespacing="0" border="0">'+
'<frame src="../black.htm" name="links" marginwidth="0" marginheight="0" noResize scrolling="no">'+
'<frameset rows="100,*" frameborder="0" framespacing="0" border="0">'+
'<frame src="../../portal/logo_frame.htm" name="kopf" marginwidth="0" marginheight="0" noResize scrolling="no">'+
'<frameset cols="600,*,160" frameborder="0" framespacing="0" border="0">'+
'<frame src="'+top.location.href+'" name="content" marginwidth="20" marginheight="12" noResize>'+
'<frame src="../black.htm" name="mitte" marginwidth="0" marginheight="0" noResize>'+
'<frame src="../navi.htm" name="navi" marginwidth="10" marginheight="12" noResize>'+
'</frameset></frameset>'+
'<frame src="../black.htm" name="rechts" marginwidth="0" marginheight="0" noResize scrolling="no">'+
'</frameset></html>');

document.close();
return true;
}
return false;
}
function msieFraming() {
if (is_msie()) {
if (Framing()) {
window.setTimeout('top.frames["content"].location.href = '+'"'+top.location.href+'";',10);
}
}
}
function netscFraming() {
if (!is_msie()) Framing();
}
msieFraming();