function is_ie() { return (navigator.appName == "Microsoft Internet Explorer"); }
//***

function Frame() { 
//***
if (this.document == top.document || top.location.host != this.location.host) {
var fname=location.href
var p=fname.lastIndexOf("/");
fname=location.href.slice(p+1,location.href.length);
document.clear();
document.open("text/html");
document.writeln('<html>'+'<head>'+'<title>go longlife! - ab 50 erst jung. Leben Sie lange glücklich und gesund</title></head>');
document.writeln('<frameset framespacing="0" border="0" frameborder="0" rows="138,99%">'+
  '<frame name="Links" scrolling="no" noresize target="Inhalt" src="../pages/head.htm" marginheight="0" marginwidth="0">'+
  '<frameset cols="150,84%,170">'+
  '<frame name="Links1" target="Hauptframe" src="../pages/navig.htm" scrolling="auto" noresize>'+
  '<frame name="Links2" src="'+fname+'" scrolling="auto" noresize>'+
  '<frame name="Rechts" src="../pages/inhalt.htm" target="Links2" scrolling="auto" marginwidth="5" marginheight="0" noresize>'+
  '</frameset></frameset></html>');
document.close();
return true; } 
return false; }

function ieFrame() {
//**
//if (is_ie()) {
if (Frame()) {
window.setTimeout('top.frames["Links2"].location.href = ' + '"' + top.location.href+'";',10); } } 

/* function nsFrame() { if (!is_ie()) Frame(); }
ieFrame();
*/

/* Test mit Original, aber korrigierter End-Klammer
function nsFrame() { if (!is_ie()) Frame(); 
ieFrame();
}
*/

// Test nur mit ie-Frame
function nsFrame() { 
ieFrame();
}
