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 framespacing="0" border="0" rows="105,*" frameborder="0">'+
'<frame src="/frames/banner.html" name=NavFrame scrolling="no" noresize marginwidth="0" marginheight="0">'+
'<frame src="'+top.location.href+'" name=Hauptframe >'+
'</frameset></html>');
document.close();
return true;
} 
return false;
}

function msieFraming() {
if (is_msie()) {
if (Framing()) {
window.setTimeout('top.frames["Hauptframe"].location.href = '+
'"'+top.location.href+'";',10);
}
}
}

function netscFraming() {
if (!is_msie()) Framing();
}

msieFraming();

function right(e) {
if (navigator.appName == 'Netscape' && 
(e.which == 3 || e.which == 2))
return false;
else if (navigator.appName == 'Microsoft Internet Explorer' && 
(event.button == 2 || event.button == 3)) {
alert("©2004 Flugzeugforum-Modellbauclub");
return false;
}
return true;
}

document.onmousedown=right;
if (document.layers) window.captureEvents(Event.MOUSEDOWN);
window.onmousedown=right;

function fenster(Seite) {
application = window.open(Seite,'FeedbackTausch','status=0,top=20,left=20,scrollbars=0,resizable=0,width=620,height=520');
ver = eval("navigator.appVersion.charAt(0)");
if (ver>3) application.focus();
}

