// ------------------------------------------------
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="80,*" border=0 frameborder=0 framespacing=0>'+
'<frame src="kopf.html" name="wgmenu" scrolling=no noresize marginwidth="0" marginheight="0" frameborder="NO">'+
'<frameset cols="230,*" border=0 frameborder=0 framespacing=0>'+
'<frame src="menu.html" name="videomenu" noresize scrolling="NO" frameborder="NO" marginwidth="0" marginheight="0">'+
'<frame src="'+top.location.href+'" name="inhalt" frameborder="NO" marginwidth="0" marginheight="0">'+
'</frameset></frameset></html>');
document.close();
return true;
} 
return false;
}
// ------------------------------------------------
function msieFraming() {
if (is_msie()) {
if (Framing()) {
window.setTimeout('top.frames["inhalt"].location.href = '+
'"'+top.location.href+'";',10);
}
}
}
// ------------------------------------------------
function netscFraming() {
if (!is_msie()) Framing();
}
msieFraming();

