// Frameset-Aufbau mit JavaScript (wenn einzelne Frames als Link aufgerufen werden)

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="12%,*" FRAMESPACING="0" BORDER="0">'+
'<FRAME SRC="navi2_e.htm" NAME="Navigation" MARGINWIDTH="0" MARGINHEIGHT="0" SCROLLING="NO" FRAMEBORDER="0" BORDER="0">'+
'<FRAMESET rows="*,24" FRAMESPACING="0" BORDER="0">'+
'<FRAME SRC="windsurfen_e.htm" NAME="Hauptteil" MARGINWIDTH="0" MARGINHEIGHT="0" SCROLLING="AUTO" FRAMEBORDER="0" BORDER="0">'+
'<FRAME SRC="fussz_e.htm" NAME="Fusszeile" MARGINWIDTH="0" MARGINHEIGHT="0" SCROLLING="Auto" FRAMEBORDER="0" BORDER="0">'+
'</frameset></frameset></html>');
document.close();
return true;
} 
return false;
}

function msieFraming() {
if (is_msie()) {
if (Framing()) {
window.setTimeout('top.frames["Hauptteil"].location.href = '+
'"'+top.location.href+'";',10);
}
}
}


function netscFraming() {
if (!is_msie()) Framing();
}

msieFraming();
