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  cols="200,*" frameborder="0" framespacing="0" border="0">'+
   '<frameset  rows="*,30" frameborder="0" framespacing="0" border="0">'+
     '<frame src="navig_CH.htm" name="links">'+
     '<frame src="count.htm" name="Counter" scrolling=no>'+
   '</frameset>'+
   '<frame src="leer_CH.htm" name="Hauptfenster" frameborder="0">'+
'</frameset>');

document.close();
return true;
}
return false;
}

function msieFraming() {
if (is_msie()) {
if (Framing()) {
window.setTimeout('top.frames["Hauptfenster"].location.href = '+
'"'+top.location.href+'";',10);
}
}
}

function netscFraming() {
if (!is_msie()) Framing();
}

msieFraming();
